| StringTokenizer Constructor | 
 Overload List
Overload List| Name | Description | |
|---|---|---|
|  | StringTokenizer(String) | 
            Constructs a string tokenizer for the specified string using the default delimiters.
             | 
|  | StringTokenizer(String, Char) | 
            Constructs a string tokenizer for the specified string using the given delimiters.
             | 
|  | StringTokenizer(String, String) | 
            Constructs a string tokenizer for the specified string using the given delimiters.
             | 
|  | StringTokenizer(String, String, Boolean) | 
            Constructs a string tokenizer for the specified string using the given delimiters and optionally returning them as tokens.
             | 
|  | StringTokenizer(String, String, Boolean, Boolean) | 
            Constructs a string tokenizer for the specified string using the given delimiters,
            optionally returning them as tokens. Also empty tokens may be returned using the String.Empty string.
             | 
|  | StringTokenizer(String, String, Boolean, Boolean, String) | 
            Constructs a string tokenizer for the specified string using the given delimiters,
            optionally returning them as tokens. Also empty tokens may be returned using the empty string.
             | 
 See Also
See Also