Description Remove leading whitespace or specified characters from string Syntax trimStart(text, characters) Parameters Input Parame...
Description Truncate string if it's longer than the given maximum string length. The last characters of the truncated string are replac...
Use this function to convert the HTML entities to their corresponding characters. Syntax unescape(input text) Returns Return ValueDes...
Description Create an array of unique values, in order, from all given arrays Syntax union(array1, array2, arrayN) Parameters Input ...
Description Return the new duplicate free array. Syntax unique(array) Parameters Input ParameterTypeDescription array Array The ar...
Description Return the new array of regrouped elements. Syntax unzip(array) Parameters Input ParameterTypeDescription array Array> ...
Description Convert string, as space separated words, to upper case Syntax upperCase(text) Parameters Input ParameterTypeDescription...
Description Convert the first character of string to upper case Syntax upperFirst(text) Parameters Input ParameterTypeDescription te...
Description Create an array excluding all given values Syntax without(array, value1, valueN) Parameters Input ParameterTypeDescripti...
Description Split string into an array of its words. A word character is a letter, a number, or an underscore. Syntax words(text, pat...