HomeLanguagesJavaStringTokenizer nextToken() Method in Java with Examples

StringTokenizer nextToken() Method in Java with Examples

The nextToken() method of StringTokenizer class is used to return the next token one after another from this StringTokenizer.

Syntax:

public String nextToken()

Parameters: The method does not take any parameters.

Return Value: The method returns the next token present in the line of the string tokenizer.

Below programs illustrate the working of nextToken() Method of StringTokenizer:

Example 1:




// Java code to illustrate nextToken() method
  
import java.util.*;
  
public class StringTokenizer_Demo {
    public static void main(String args[])
    {
        // Creating a StringTokenizer
        StringTokenizer str_arr
            = new StringTokenizer(
                "Lets practice at Lazyroar");
  
        // Displaying the Tokens
        while (str_arr.hasMoreTokens()) {
            System.out.println("The Next token: "
                               + str_arr.nextToken());
        }
    }
}


Output:

The Next token: Lets
The Next token: practice
The Next token: at
The Next token: Lazyroar

Example 2:




// Java code to illustrate nextToken() method
  
import java.util.*;
  
public class StringTokenizer_Demo {
    public static void main(String args[])
    {
        // Creating a StringTokenizer
        StringTokenizer str_arr
            = new StringTokenizer(
                "Welcome to Lazyroar");
  
        // Displaying the Tokens
        while (str_arr.hasMoreTokens()) {
            System.out.println("The Next token: "
                               + str_arr.nextToken());
        }
    }
}


Output:

The Next token: Welcome
The Next token: to
The Next token: Lazyroar
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32548 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6922 POSTS0 COMMENTS
Nicole Veronica
12039 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12144 POSTS0 COMMENTS
Shaida Kate Naidoo
7059 POSTS0 COMMENTS
Ted Musemwa
7299 POSTS0 COMMENTS
Thapelo Manthata
7016 POSTS0 COMMENTS
Umr Jansen
7005 POSTS0 COMMENTS