StringTokenizer

StringTokenizer Count Tokens

This is an example of how to use a StringTokenizer to count the tokens of a String. The StringTokenizer is used to break a String into tokens. Using a StringTokenizer to count the tokens of a String implies that you should:

  • Get a new StringTokenizer for a specified String, using the StringTokenizer(String str) constructor.
  • Invoke countTokens() API method of StringTokenizer. The method calculates the number of times that this tokenizer’s nextToken() method can be called before it generates an exception, that is the number of tokens that the String of the tokenizer has.
  • While hasMoreTokens() API method of StringTokenizer returns true, invoke nextToken() method of StringTokenizer to get the tokens of this String and invoke countTokens() method again. Each time a new token is returned, the countTokens() method returns one less than before.

Let’s take a look at the code snippet that follows:

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
package com.javacodegeeks.snippets.core;
 
import java.util.StringTokenizer;
 
public class StringTokenizerCountTokens {
     
    public static void main(String[] args) {
         
        StringTokenizer tokenizer = new StringTokenizer("Java Code Geeks - Java Examples");
         
        System.out.println("Remaining Tokens: " + tokenizer.countTokens());
         
        // loop through tokens
        while (tokenizer.hasMoreTokens()) {
            System.out.println("Token:" + tokenizer.nextToken());
            System.out.println("Remaining Tokens: " + tokenizer.countTokens());
        }
         
    }
 
}

Output:

Remaining Tokens: 6
Token:Java
Remaining Tokens: 5
Token:Code
Remaining Tokens: 4
Token:Geeks
Remaining Tokens: 3
Token:-
Remaining Tokens: 2
Token:Java
Remaining Tokens: 1
Token:Examples
Remaining Tokens: 0

 
This was an example of how to use a StringTokenizer to count the tokens of a String in Java.

Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy

Ilias Tsagklis

Ilias is a software developer turned online entrepreneur. He is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest


This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Back to top button