643,983,104
Depends on context. This could be the tokens 643 and 983 and 104 separated by the delimiter character comma, or it could be a single token representing a large integer with thousands and millions marked with commas. Or it could be something completely different.
StringTokenizer
Class
The StringTokenizer
class aids in breaking
a String into tokens.
You can use the default delimiters, or specify your own.
The default delimiters are: space, tab, newline, and
carriage return.
StringTokenizer constructors | |
---|---|
public StringTokenizer( String arg ) | create a StringTokenizer based on String, using the default delimiters |
public StringTokenizer( String arg, String delimit) | create a StringTokenizer based on String, using the individual characters in delimit as delimiters |
public StringTokenizer( String arg, String delimit, boolean ret) | as above, but if |
The StringTokenizer
class is found in java.util
,
which must be imported for the program to compile.