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.
create a StringTokenizer based on String, using the default delimiters
create a StringTokenizer based on String, using the individual characters in delimit as delimiters
as above, but if ret
is true,
then individial delimiters count as tokens also.
The StringTokenizer
class is found in java.util
,
which must be imported for the program to compile.