String
Concat
Concatenates multiple strings into a single string. Treats NULL values as an empty string. –> learn more
Return type
string
Parameters
@expression
true
-
Ends with
Determines whether a string is a suffix of another string –> learn more
Return type
boolean
Parameters
@expression
true
-
@expression_2
true
-
Format string
Creates a formatted string from input variables. Similar to the C printf function. –> learn more
Return type
string
Parameters
@expression
true
-
@format_string
true
-
Length
Returns the number of characters in a string variable –> learn more
Return type
integer
Parameters
@variable
true
-
Lower case
Return string value to lowercase –> learn more
Return type
string
Parameters
@variable
true
-
Pad left
Pad a string to the left with characters up to a certain total length –> learn more
Return type
string
Parameters
@variable
true
-
@pattern
false
-
@return_length
true
-
Trim left
Removes all leading characters that match the provided pattern –> learn more
Return type
string
Parameters
@expression
true
-
@pattern
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
@variable
true
-
@normalization_mode
any of: NFC
, NFKC
, NFD
, NFKD
false
(NFC (default))
Regexp contains
Match a variable's values against a regular expression –> learn more
Return type
boolean
Parameters
@variable
true
-
@regex
true
-
Regexp extract
Returns the first substring that matches a regular expression –> learn more
Return type
string
Parameters
@variable
true
-
@regex
true
-
Regexp replace
Replaces all substrings that match a given regular expression with a new string –> learn more
Return type
string
Parameters
@variable
true
-
@regex
true
-
@expression_2
false
-
Repeat
Return a string of a provided value repeated a set number of times –> learn more
Return type
string
Parameters
@expression
true
-
@literal
true
-
Replace
Replaces all substrings that match a given string with a replacement string –> learn more
Return type
string
Parameters
@expression
true
-
@match
true
-
@expression_2
false
-
Reverse
Reverses a string –> learn more
Return type
string
Parameters
@expression
true
-
Pad right
Pad a string to the right with characters up to a certain total length –> learn more
Return type
string
Parameters
@variable
true
-
@pattern
false
-
@return_length
true
-
Trim right
Removes all trailing characters that match the provided pattern –> learn more
Return type
string
Parameters
@expression
true
-
@pattern
false
-
Starts with
Determines whether a string is a prefix of another string –> learn more
Return type
boolean
Parameters
@expression
true
-
@expression_2
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
@expression
true
-
@match
true
-
Substring
Return the substring of a specified string –> learn more
Return type
string
Parameters
@expression
true
-
@position
true
-
@length
false
-
Trim
Removes all leading and trailing characters that match the provided pattern –> learn more
Return type
string
Parameters
@expression
true
-
@pattern
false
-
Upper case
Return string value to uppercase –> learn more
Return type
dynamic (input-dependent)
Parameters
@variable
true
-
Last updated