A good answer might be:java TokenTester "val = 12+8" val 12 8 |
Returning Delimiters
You probably regard the "=" and the "+" symbols as important,
so they should be regarded as tokens.
But "+" also needs to work as a delimiter so that "12+8"
is broken into the tokens "12", "+" and "8".
This is done by using true as the third parameter
in the constructor:
Now individual delimiters (as well as tokens) are returned
by
|
QUESTION 16:Now what is the output for the following: Click Here after you have answered the questionjava TokenTester "val = 12+8" |