| java.lang.Object com.ice.util.StringUtilities
StringUtilities | public class StringUtilities (Code) | | |
splitString | public static String[] splitString(String splitStr, String delim)(Code) | | Split a string into a string array containing the substrings
between the delimiters.
NOTE This method WILL NOT return an empty
token at the end of the array that is returned, if the string
ends with the delimiter. If you wish to have a property string
array that ends with the delimiter return an empty string at
the end of the array, use vectorString() .
|
vectorString | public static Vector vectorString(String splitStr, String delim)(Code) | | Split a string into a string Vector containing the substrings
between the delimiters.
NOTE This method WILL return an empty
token at the end of the array that is returned, if the string
ends with the delimiter.
|
|
|