CharacterIterator setIndex() method in Java with Examples Last Updated : 29 Jul, 2019 Comments Improve Suggest changes Like Article Like Report The setIndex() method of java.text.CharacterIterator interface in Java is used to set the current index that is to be read by this CharacterIterator. This method takes the index to be set as a parameter and sets the index of this CharacterIterator at that index and then it returns that character. Syntax: public char setIndex(int index) Parameter: This method takes the index to be set as a parameter and sets the index of this CharacterIterator. Return Value: This method returns the character at the index set by this method. Exception: This method throw IllegalArgumentException if the specified index is not in the valid range (getBeginIndex(), getEndIndex() - 1). Program: Java // Java program to demonstrate // the above method import java.text.*; import java.util.*; public class CharacterIteratorDemo { public static void main(String[] args) { CharacterIterator characterIterator = new StringCharacterIterator( "GeeksForGeeks"); System.out.println("Current Index: " + characterIterator .getIndex()); int index = 5; System.out.println("Updated the index to : " + index); System.out.println("Character at new" + " current index: " + characterIterator .setIndex(index)); } } Output: Current Index: 0 Updated the index to : 5 Character at new current index: F Reference: https://docs.oracle.com/javase/9/docs/api/java/text/CharacterIterator.html#setIndex-int- Comment More infoAdvertise with us Next Article CharacterIterator setIndex() method in Java with Examples S ShubhamMaurya3 Follow Improve Article Tags : Java Java-Functions Java-text package Java-CharacterIterator Practice Tags : Java Similar Reads CharacterIterator next() method in Java with Examples The next() method of java.text.CharacterIterator interface in Java is used to get the next character that is to be read by this CharacterIterator. This method decrements this iterator to one index forward and returns that next character. Syntax: public char next() Parameter: This method do not accep 1 min read CharacterIterator previous() method in Java with Examples The previous() method of java.text.CharacterIterator interface in Java is used to get the previous character that is to be read by this CharacterIterator. This method decrements this iterator to one index backwards and returns that previous character. Syntax: public char previous() Parameter: This m 1 min read CharacterIterator last() method in Java with Examples The last() method of java.text.CharacterIterator interface in Java is used to get the character at the ending of this CharacterIterator. This method sets the position of the iterator to the last character, using getEndIndex(), and then returns that character. Syntax: public char last() Parameter: Th 1 min read CharacterIterator first() method in Java with Examples The first() method of java.text.CharacterIterator interface in Java is used to get the character at the beginning of this CharacterIterator. This method sets the position of the iterator to the first character, using getBeginIndex(), and then returns that character. Syntax: public char first() Param 1 min read BreakIterator setText(CharacterIterator) method in Java with Examples The setText(CharacterIterator) method of java.text.BreakIterator class is used to set the new text into the BreakIterator using CharacterIterator object. Syntax: public abstract void setText(CharacterIterator newText) Parameter: This method takes CharacterIterator object as a parameter which contain 2 min read Like