| | Constant | Description |
|---|
| | camelCase |
Converts a hyphenated string to a camelcased string. |
| | capitalize |
Converts the first letter of each word in a string to uppercase. |
| | center |
Returns the center string representation of the specified string value. |
| | clean |
Removes all extraneous whitespace from a string and trims it. |
| | compare |
Compares two strings. |
| | endsWith |
Determines wether the end of a string matches the specified value. |
| | fastformat |
Quick and fast format of a string using indexed parameters only. |
| | format |
Format a string using indexed or named parameters. |
| | hyphenate |
Converts a camelcased string to a hyphenated string. |
| | indexOfAny |
Reports the index of the first occurrence in this instance of any character in a specified array of Unicode characters. |
| | insert |
Inserts a specified instance of String at a specified index position in this instance. |
| | lastIndexOfAny |
Reports the index position of the last occurrence in this instance of one or more characters specified in a Unicode array. |
| | lineTerminatorChars |
Like white space characters, line terminator characters are used to improve source text readability and to separate tokens (indivisible lexical units) from each other. |
| | pad |
Apply character padding to a string. |
| | padLeft |
Right-aligns the characters in this instance, padding on the left with a specified Unicode character for a specified total length. |
| | padRight |
Left-aligns the characters in this string, padding on the right with a specified Unicode character, for a specified total length. |
| | repeat |
Returns a new String value who contains the specified String characters repeated count times. |
| | startsWith |
Checks if this string starts with the specified prefix. |
| | trim |
Removes all occurrences of a set of specified characters (or strings) from the beginning and end of this instance. |
| | trimEnd |
Removes all occurrences of a set of characters specified in an array from the end of this instance. |
| | trimStart |
Removes all occurrences of a set of characters specified in an array from the beginning of this instance. |
| | userAgent |
Returns a user-agent string. |
| | whiteSpaceChars |
Contains all white space chars. |