String

Concat

Concatenates multiple strings into a single string. Treats NULL values as an empty string. –> learn morearrow-up-right

CONCAT(@expression)

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Ends with

Determines whether a string is a suffix of another string –> learn morearrow-up-right

ENDS_WITH(@expression, @expression_2)

Return type

boolean

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Format string

Creates a formatted string from input variables. Similar to the C printf function. –> learn morearrow-up-right

Return type

string

Parameters

Length

Returns the number of characters in a string variable –> learn morearrow-up-right

Return type

integer

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Lower case

Return string value to lowercase –> learn morearrow-up-right

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Pad left

Pad a string to the left with characters up to a certain total length –> learn morearrow-up-right

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Trim left

Removes all leading characters that match the provided pattern –> learn morearrow-up-right

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

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 morearrow-up-right

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

@normalization_mode

any of: NFC, NFKC, NFD, NFKD

false

(NFC (default))

Regexp contains

Match a variable's values against a regular expression –> learn morearrow-up-right

Return type

boolean

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Regexp extract

Returns the first substring that matches a regular expression –> learn morearrow-up-right

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Regexp replace

Replaces all substrings that match a given regular expression with a new string –> learn morearrow-up-right

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Repeat

Return a string of a provided value repeated a set number of times –> learn morearrow-up-right

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Replace

Replaces all substrings that match a given string with a replacement string –> learn morearrow-up-right

Return type

string

Parameters

Reverse

Reverses a string –> learn morearrow-up-right

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Pad right

Pad a string to the right with characters up to a certain total length –> learn morearrow-up-right

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Trim right

Removes all trailing characters that match the provided pattern –> learn morearrow-up-right

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Starts with

Determines whether a string is a prefix of another string –> learn morearrow-up-right

Return type

boolean

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

String position

Returns the 1-based index of the first occurrence of a substring within a string. Returns 0 if not found. –> learn morearrow-up-right

Return type

integer

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Substring

Return the substring of a specified string –> learn morearrow-up-right

Return type

string

Parameters

Trim

Removes all leading and trailing characters that match the provided pattern –> learn morearrow-up-right

Return type

string

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Upper case

Return string value to uppercase –> learn morearrow-up-right

Return type

dynamic (input-dependent)

Parameters

Name
Type
Allowed values
Required
Placeholder (in UI)

Last updated

Was this helpful?