public class StringHelper extends Object
Type Params | Return Type | Name and description |
---|---|---|
|
public static String[] |
tokenizeUnquoted(String s) This method tokenizes a string by space characters, but ignores spaces in quoted parts,that are parts in '' or "". |
This method tokenizes a string by space characters, but ignores spaces in quoted parts,that are parts in '' or "". The method does allows the usage of "" in '' and '' in "". The space character between tokens is not returned.
s
- the string to tokenize