Description Return a specified number of characters from the end of a string Syntax right(text, length) Parameters Input ParameterTy...
Description Calculate the length of a string Syntax stringLength(text) Parameters Input ParameterTypeDescription text string The i...
Description Extract the text after a specified substring in a string. Syntax textAfter(input, substring) Parameters Input ParameterT...
Description Extract the text before a specified substring in a string Syntax textBefore(input, substring) Parameters Input Parameter...
Description Convert multiple spaces to a single space for a string Syntax toSingleSpace(text) Parameters Input ParameterTypeDescript...
Description Convert a string to proper case (title case) Syntax toTitleCase(text) Parameters Input ParameterTypeDescription text st...
Description Return a specified number of characters from the beginning of each string in a list Syntax leftForList(array, length) Pa...
Description Remove a list of characters from each string in a list Syntax removeCharactersForList(array, charactersToRemove) Paramet...
Description Remove non-alphanumeric characters (excluding letters and digits) from each string in a list Syntax removeNonAlphaNumeric...
Description Remove non-alphanumeric characters (excluding letters and digits) from the edges of each string in a list Syntax removeNo...