What is StringTokenizer?
Overview StringTokenizer class is mostly used to break a string based upon a set of delimiter tokens. You can then call the Enumeration methods to loop through the elements. Class Diagram The set of delimiters are the characters that separate tokens. They can be specified either at creation time or on a per-token basis. […]