How to split a Java String into tokens with StringTokenizer?



The hasMoreTokens() method is used to test if there are more tokens available from this tokenizer's string.

Example

Live Demo

import java.util.*; public class StringTokenizerDemo {    public static void main(String[] args) {       // creating string tokenizer       StringTokenizer st = new StringTokenizer("Come to learn");       // checking elements       while (st.hasMoreElements()) {          System.out.println("Next element : " + st.nextElement());       }    } }

Output

Next element : Come Next element : to Next element : learn
Updated on: 2020-02-26T07:06:25+05:30

501 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements