A utility function that checks whether the input value does not contain a sequence of characters.
A utility function that checks whether the input value ends with a sequence of characters.
Returns the first character of the input string.
Returns the last character of the input String.
Returns a Replaced String from the input String based on the provided Regex and Replacement String.
Returns the total number of characters in the input String.
Returns an Array.String based on a provided Separator that splits the input String.
A utility function that checks whether the input value starts with a sequence of characters.
Converts a string to number.
Returns a substring from the input String based on the provided Start Index and End Index.
Converts the input String to all lowercase characters.
Changes the case of words in the input string. Capitalizes the first letter of each word, and makes every other letter in the word lower case. A word is considered any string separated by a space, hyphen, backslash, or forward slash character. The transform function always evaluates words from left-to-right to determine the first letter.
Converts the input string to all uppercase characters.
Removes white space from the beginning and end of the input String.
A utility function that checks whether the input value contains a sequence of characters.