This method is used to return the next token in this string tokenizer's string. First, the set of characters considered to be delimiters by this StringTokenizer object is changed to be the characters in the string delim. Then the next token in the string after the current position is returned.
Syntax:Library: java.util.StringTokenizer
public String nextToken(String delim)
Example:import java.util.*;
public class StringTokenizerDemo {
public static void main(String[] args) {
// creating string tokenizer with delimeter
StringTokenizer st = new StringTokenizer("Come/to/learn");
// checking next token
System.out.println("Next token is : " + st.nextToken("/"));
}
}
Output:
Next token is : Come
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 316 / 158782629. Delta: 0.02008 с