Wednesday, May 6, 2026
HomeLanguagesJavaStringCharacterIterator next() method in Java with Examples

StringCharacterIterator next() method in Java with Examples

The next() method of java.text.StringCharacterIterator class in Java is used to get the next character that is to be read by this StringCharacterIterator. This method decrements this iterator to one index forward and returns that next character.

Syntax:

public char next()

Parameter: This method do not accept any parameter.

Return Value: This method returns the next character that is to be read by this StringCharacterIterator.

Exception: This method do not throw any Exception.

Program:




// Java program to demonstrate
// the above method
  
import java.text.*;
import java.util.*;
  
public class StringCharacterIteratorDemo {
    public static void main(String[] args)
    {
  
        StringCharacterIterator stringCharacterIterator
            = new StringCharacterIterator(
                "GeeksForGeeks");
  
        System.out.println("Current character: "
                           + stringCharacterIterator
                                 .current());
  
        System.out.println("Next character: "
                           + stringCharacterIterator
                                 .next());
    }
}


Output:

Current character: G
Next character: e

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/StringCharacterIterator.html#next–

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

2 COMMENTS

Most Popular

Dominic
32513 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6886 POSTS0 COMMENTS
Nicole Veronica
12008 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12104 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7261 POSTS0 COMMENTS
Thapelo Manthata
6974 POSTS0 COMMENTS
Umr Jansen
6960 POSTS0 COMMENTS