Abbreviates a String using ellipses.
Converts all the whitespace separated words in the string into capitalized words, that is each word is made up of a titlecase character and then a series of lowercase characters.
Centers a String in a larger String of the specified size.
Centers a String in a larger String of the specified size. Uses a supplied String as the value to pad the String with.
Centers a String in a larger String of the specified size.
Centers a String in a larger String of the specified size. Uses a supplied character as the value to pad the String with.
Centers a String in a larger String of the specified size using the space character (' ').
Find the edit distance to another String
Returns a String value for a CSV column enclosed in double quotes, if required.
Escapes the characters in a String using HTML entities.
Escapes the characters in a String using Java String rules.
Escapes the characters in a String using Json String rules.
Escapes the characters in a String using XML entities.
Extracts the initial characters from each word in the String.
Checks if the string contains only Unicode letters.
Checks if the string contains only Unicode letters or digits.
Checks if string contains only ASCII characters.
Checks if string contains only ASCII characters. Note that we consider the empty string to be ascii.
Checks if the string contains only ASCII printable characters.
Checks if the string contains only Unicode digits.
Checks if string contains only ASCII punctuation characters.
Checks if string contains only ASCII punctuation characters.
One of !"#$%&'()*+,-./:;<=>?@[\]^_{|}~
Checks if string contains only whitespace.
Checks if string contains only whitespace. Note that we consider the empty string to be whitespace.
Left pad a String with a specified String.
Left pad a String with a specified String. The String is padded to the specified size.
Left pad a String with a specified character.
Left pad a String with a specified character. The String is padded to the specified size.
Left pad a String with spaces (' ').
Left pad a String with spaces (' '). The String is padded to the specified size.
Removes leading and trailing whitespace and replaces sequences of whitespace characters by a single space.
Replaces all the occurrences of variables with their matching values from the map.
Right pad a String with a specified String.
Right pad a String with a specified String. The String is padded to the specified size.
Right pad a String with a specified character.
Right pad a String with a specified character. The String is padded to the specified size.
Right pad a String with spaces (' ').
Right pad a String with spaces (' '). The String is padded to the specified size.
Splits the provided text on whitespace.
Removes diacritics from a string.
Swaps the case of a String changing upper and title case to lower case, and lower case to upper case.
Returns a String value for an unescaped CSV column.
Unescapes a string containing entity escapes to a string containing the actual Unicode characters corresponding to the escapes.
Unescapes any Java literals found in the String.
Unescapes any Json literals found in the String.
Unescapes a string containing XML entity escapes to a string containing the actual Unicode characters corresponding to the escapes.
Wraps a single line of text, identifying words by ' '.