Wednesday, July 1, 2026
HomeLanguagesJavaStringCharacterIterator setText() method in Java with Examples

StringCharacterIterator setText() method in Java with Examples

The setText() method of java.text.StringCharacterIterator class in Java is used to set the current text that is to be read by this StringCharacterIterator. This method takes the text to be set as a parameter and sets the text of this StringCharacterIterator at that text.

Syntax:

public void setText(String text)

Parameter: This method takes the text to be set as a parameter and sets the text of this StringCharacterIterator.

Return Value: This method do not return anything.

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)
    {
  
        String text = "GeeksForGeeks";
  
        StringCharacterIterator
            stringCharacterIterator
            = new StringCharacterIterator(text);
  
        System.out.println("Current Text: "
                           + text);
  
        text = "Geeks for Geeks";
  
        stringCharacterIterator.setText(text);
  
        System.out.println("New text: "
                           + text);
    }
}


Output:

Current Text: GeeksForGeeks
New text: Geeks for Geeks

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/StringCharacterIterator.html#setText-java.lang.String-

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32517 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12014 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6966 POSTS0 COMMENTS