String functions

 

 

Function Description SOM equivalent

StartsWith()

Returns strings that start with the defined input.

"abc*"

EndsWith()

Returns strings that end with the defined input.

"*abc"

Contains()

Returns strings that contain the defined input.

"*abc*"

Compare()

 

">abc"

ToUpper()

Converts the entire string to upper case.

"ʌABC"

ToLower()

Converts the entire string to lower case.

"ʌabc"