Overload List

  Name Description
Public method StringTokenizer()()()()
Empty Constructor. Will create an empty StringTokenizer with no source, no delimiter, and no tokens. If you want to use this StringTokenizer you will have to call the NewSource(string s) method. You may optionally call the NewDelim(string d) or NewDelim(char[] d) methods if you don't with to use the default delimiter of " " (space).
Public method StringTokenizer(String)
Constructor for StringTokenizer Class. The default delimiter of " " (space) is used.
Public method StringTokenizer(String, array<Char>[]()[][])
Constructor for StringTokenizer Class.
Public method StringTokenizer(String, String)
Constructor for StringTokenizer Class.

See Also