| java.lang.Object persistence.antlr.StringUtils
StringUtils | public class StringUtils (Code) | | |
stripBack | public static String stripBack(String s, char c)(Code) | | General-purpose utility function for removing
characters from back of string
Parameters: s - The string to process Parameters: c - The character to remove The resulting string |
stripBack | public static String stripBack(String s, String remove)(Code) | | General-purpose utility function for removing
characters from back of string
Parameters: s - The string to process Parameters: remove - A string containing the set of characters to remove The resulting string |
stripFront | public static String stripFront(String s, char c)(Code) | | General-purpose utility function for removing
characters from front of string
Parameters: s - The string to process Parameters: c - The character to remove The resulting string |
stripFront | public static String stripFront(String s, String remove)(Code) | | General-purpose utility function for removing
characters from front of string
Parameters: s - The string to process Parameters: remove - A string containing the set of characters to remove The resulting string |
stripFrontBack | public static String stripFrontBack(String src, String head, String tail)(Code) | | General-purpose utility function for removing
characters from the front and back of string
Parameters: s - The string to process Parameters: head - exact string to strip from head Parameters: tail - exact string to strip from tail The resulting string |
|
|