String
Concat
Concatenates multiple strings into a single string. Treats NULL values as an empty string. –> learn more
Return type
string
Parameters
Ends with
Determines whether a string is a suffix of another string –> learn more
Return type
boolean
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any string | true | - |
Format string
Creates a formatted string from input variables. Similar to the C printf function. –> learn more
Return type
string
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| true | - | ||
| any string | true | - |
Length
Returns the number of characters in a string variable –> learn more
Return type
integer
Parameters
Lower case
Return string value to lowercase –> learn more
Return type
string
Parameters
Pad left
Pad a string to the left with characters up to a certain total length –> learn more
Return type
string
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any string | false | - | |
| any integer | true | - |
Trim left
Removes all leading characters that match the provided pattern –> learn more
Return type
string
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any Redivis type | false | - |
Normalize
Normalization is used to ensure that two strings are equivalent. Normalization is often used in situations in which two strings render the same on the screen but have different Unicode code points. –> learn more
Return type
string
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any of: | false | (NFC (default)) |
Regexp contains
Match a variable's values against a regular expression –> learn more
Return type
boolean
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any Redivis type | true | - |
Regexp extract
Returns the first substring that matches a regular expression –> learn more
Return type
string
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any Redivis type | true | - |
Regexp replace
Replaces all substrings that match a given regular expression with a new string –> learn more
Return type
string
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any Redivis type | true | - | |
| any string | false | - |
Repeat
Return a string of a provided value repeated a set number of times –> learn more
Return type
string
Parameters
Replace
Replaces all substrings that match a given string with a replacement string –> learn more
Return type
string
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any string | true | - | |
| any string | false | - |
Reverse
Reverses a string –> learn more
Return type
string
Parameters
Pad right
Pad a string to the right with characters up to a certain total length –> learn more
Return type
string
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any string | false | - | |
| any integer | true | - |
Trim right
Removes all trailing characters that match the provided pattern –> learn more
Return type
string
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any Redivis type | false | - |
Starts with
Determines whether a string is a prefix of another string –> learn more
Return type
boolean
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any string | true | - |
String position
Returns the 1-based index of the first occurrence of a substring within a string. Returns 0 if not found. –> learn more
Return type
integer
Parameters
Substring
Return the substring of a specified string –> learn more
Return type
string
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any integer | true | - | |
| any integer | false | - |
Trim
Removes all leading and trailing characters that match the provided pattern –> learn more
Return type
string
Parameters
Name | Type | Allowed values | Required | Placeholder (in UI) |
---|---|---|---|---|
| any string | true | - | |
| any Redivis type | false | - |
Upper case
Return string value to uppercase –> learn more
Return type
dynamic (input-dependent)
Parameters
Last updated