Package java.util
Class StringTokenizer
StringTokenizer(String str)
StringTokenizer(String str, String delim)
StringTokenizer(String input, String delims, boolean retDelim)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
constructor StringTokenizer(String str)
Constructs an instance of a StringTokenizer for the specified string str. The tokenizer uses the default delimiter set, which are the space character, the tab character, the newline character, the carrige-return character, and the form-feed character. Delimiter characters themselves will not be treated as tokens.
constructor StringTokenizer(String str, String delims)
Constructs an instance of a StringTokenizer for the specified string str. The characters in the delims argument are the delimiters for separating tokens. Delimiter characters themselves will not be treated as tokens.
constructor StringTokenizer(String input, String delims, boolean retDelim)
Constructs an instance of a StringTokenizer for the specified string str. The characters in the delims argument are the delimiters for separating tokens. If the returnDelim flag is true, then the delimiter characters are also returned as tokens. Each delimiter is returned as a string of length one. If the flag is false, the delimiter characters are skipped and only serve as separators between tokens.