String

Contains

Returns true if a string contains a given substring.

Expression:

CONTAINS(string: string, substring: string)

Return:

boolean

Example of usage:

CONTAINS("The Lord of the Rings", "Harry Potter")

Return value:
false

Starts With

Returns true if a string starts with a given substring.

Expression:

STARTS_WITH(string: string, substring: string)

Return:

boolean

Example of usage:

Concatenate

Returns a concatenated string.

Expression:

CONCAT(string1: string, string2: string, string?: string)

Return:

concatString: string

Example of usage:

Lowercase

Returns a converted string into lowercase.

Expression:

LOWERCASE(value: string)

Return:

lowercaseString: string

Example of usage:

Uppercase

Returns a converted string into lowercase.

Expression:

UPPERCASE(value: string)

Return:

uppercaseString: string

Example of usage:

Is Empty

Returns true if a value is an empty string.

Expression:

ISEMPTY(value: string)

Return:

boolean

Example of usage:

Empty String to Null

Returns null if a value is empty. Otherwise returns the value as is.

Expression:

EMPTYNULL(value: string)

Return:

null || string

Example of usage:

Split

Returns an exact number of split strings to an array using a separator.

Expression:

SPLIT(value: string, delimiter: string, maximumElements?: integer)

Return:

splitString: array

Example of usage:

Substring

Returns a trimmed string bordered by index numbers.

Expression:

SUBSTRING(inputString: string, start: integer, end: integer)

Return:

trimmedString: string

Example of usage:

Replace

Returns a string; a matched one replaces its pattern.

Expression:

REPLACE(inputString: string, searchPattern: string, replacedPattern: string)

Return:

replacedString: string

Example of usage:

Join Array to a String

Returns a string of joined array elements with string separators.

Expression:

JOIN(value: array, separator: string)

Return:

joinedString: string

Example of usage:

String Lenght

Returns a number of characters by a given string.

Expression:

STRLEN(value: string)

Return:

numberOfCharacters: integer

Example of usage:

Last updated

Was this helpful?