Description Pad string on the left and right sides if it's shorter than length. Padding characters are truncated if they can't be evenl...
Description Pad string on the right side if it's shorter than length. Padding characters are truncated if they exceed length Syntax p...
Description Pad string on the left side if it's shorter than length. Padding characters are truncated if they exceed length Syntax pa...
Description Use this function to convert a string to a date using a specified format. Syntax parseDate(dateString, format) Returns ...
Description Convert string to an integer of the specified radix. If radix is undefined or 0, a radix of 10 is used unless value is a he...
Description Use this function to calculate the percentage of a value. Syntax percent(value, percentage) Parameters Input ParameterT...
Description Generate a random number within a specified range Syntax random(min, max) Parameters Input ParameterTypeDescription min...
Description Replace matches for `pattern` in `input` string with `replacement`. Syntax regexReplace(input, pattern, replacement, flag...
Description Return first index of match for `pattern` in `input` string. Return `-1` if there is no match. Syntax regexSearch(input, ...
Use this function to return the first index of the match for the `pattern` in the `input` string. Return `-1` if there is no match. Syn...