Method Summary |
|
public static String | capitalize(String text) Capitalize the first letter of the given text. |
public static List | chompString(String text) Split the String on newlines. |
public static boolean | hasNonAlphaNumericCharacters(String str) Returns true if the given String contains at least one non alpha-
numeric character. |
public static boolean | hasNonAlphaNumericCharacters(String str, char[] ignore) Returns true if the given String contains at least one non alpha-
numeric character. |
public static boolean | isAscii(char c) Return true if the character is an ASCII character. |
public static boolean | isExtendedAscii(char c) Return true if the character is an extended ASCII character. |
public static String | join(Object[] data) Join the given Object array using the DEFAULT_DELIMITER. |
public static String | join(Object[] data, String delimiter) Join the given Object array using the given delimiter. |
public static String | join(Collection data) Join the given Collection using the DEFAULT_DELIMITER. |
public static String | join(Collection data, String delimiter) Join the given Collection using the given delimiter. |
public static String | remove(String src, char[] removeChars) Remove all instances of the given characters from the given String. |
public static String | removeWhitespace(String src) Remove all whitespace from the given String. |
public static String | replace(String str, String searchString, String replacementString) Replace all instances of a String within another String. |
public static List | splitString(String text, String separator) Split the given text using the given separator. |
public static List | splitString(String text, String separator, boolean removeWhitespace) Split the given text using the given separator. |
public static List | splitStringOnWhitespace(String text) Split the given String on whitespace characters. |
public static String | stripNonAlphaNumericCharacters(String str) String all non alpha-numeric characters from the given String. |
public static String | stripNonAlphaNumericCharacters(String str, char[] ignore) Strip all non alpha-numeric characters from the given String. |