// Tokenize a string that is delimited
// with semicolons. The string has 3 tokens.
StringTokenizer strTokenizer =
new StringTokenizer("One;Two;Three");
// Extract the three tokens from the string.
while (strTokenizer.hasMoreTokens())
{
System.out.println(strTokenizer.nextToken());
}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.