Open In App

StringCharacterIterator setText() method in Java with Examples

Last Updated : 29 Jul, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
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:
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-

Similar Reads