String operators
strSearch(string, substring, start, end)
Searches a string inside another string and returns the index(zero-based) of the first occurrence. If not found, returns -1.
strConcat(string0, string1, ...)
Joins all the (string type) arguments together and returns the concatenated string.
strToLower(string)
Converts a string to lowercase letters.
strToUpper(string)
Converts a string to uppercase letters.
strLength(string)
Returns the length of the string.
strExtraction(string, start, count)
Extracts characters from a string.
toString(argument)
Converts a value to a string. Returns null if the argument is null or missing.
Last updated
Was this helpful?