Description Return true if any of the array elements pass the test provided by the expression, otherwise false. Syntax some(array, el...
Description Return true if all of the array elements pass the test provided by the expression, otherwise false. Syntax every(array, e...
Description Apply an expression against an accumulator and each value of the array (from left-to-right) to reduce it to a single value....
Description Apply an expression against an accumulator and each value of the array (from right-to-left) to reduce it to a single value....
Description Return a specified number of characters from the beginning of a string Syntax left(text, length) Parameters Input Parame...
Description Remove a list of characters from a string Syntax removeCharacters(text, charactersToRemove) Parameters Input ParameterTy...
Description Remove non-alphanumeric characters (excluding letters and digits) from a string Syntax removeNonAlphaNumericCharacters(te...
Description Remove non-alphanumeric characters (excluding letters and digits) from the edges of a string Syntax removeNonAlphaNumeric...
Description Remove non-numeric characters (excluding digits) from a string Syntax removeNonNumericCharacters(text) Parameters Input ...
Description Replace multiple characters in a string according to a given mapping Syntax replaceMultipleCharacters(text, replacements)...