BreakIterator current() method in Java with Examples Last Updated : 27 Nov, 2019 Comments Improve Suggest changes Like Article Like Report The current() method of java.text.BreakIterator class is used to get the index of recent text boundary in the line of words. It provides the offset of the text which is currently pointed by the BreakIterator. Syntax: public abstract int current() Parameter: This method does not accept any parameter. Return Value: This method provides the index of recent text boundary. Below are the examples to illustrate the current() method: Example 1: Java // Java program to demonstrate current() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing integer with zero int current = 0, last = 0; // creating and initializing BreakIterator BreakIterator wb = BreakIterator.getWordInstance(); // setting text for BreakIterator wb.setText("Code Geeks"); // getting the current text boundary current = wb.current(); // display the result System.out.println( "current position " + "before calling next(): " + current); // calling next method last = wb.next(); // getting the current text boundary current = wb.current(); // display the result System.out.println( "\ncurrent position after" + " calling 1st next(): " + current); // calling next method last = wb.next(); // getting the current text boundary current = wb.current(); // display the result System.out.println( "\ncurrent position after" + " calling 2nd next(): " + current); } } Output: current position before calling next(): 0 current position after calling 1st next(): 4 current position after calling 2nd next(): 6 Example 2: Java // Java program to demonstrate current() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing integer with zero int current = 0, last = 0; // creating and initializing BreakIterator BreakIterator wb = BreakIterator.getWordInstance(); // setting text for BreakIterator wb.setText("GeeksForGeeks"); // getting the current text boundary current = wb.current(); // display the result System.out.println( "current position " + "before calling next(): " + current); // calling next method last = wb.next(); // getting the current text boundary current = wb.current(); // display the result System.out.println( "\ncurrent position after" + " calling 1st next(): " + current); // calling next method last = wb.next(); // getting the current text boundary current = wb.current(); // display the result System.out.println( "\ncurrent position after" + " calling 2nd next(): " + current); } } Output: current position before calling next(): 0 current position after calling 1st next(): 13 current position after calling 2nd next(): 13 Reference: https://docs.oracle.com/javase/9/docs/api/java/text/BreakIterator.html#current-- Comment More infoAdvertise with us Next Article BreakIterator current() method in Java with Examples R rohitprasad3 Follow Improve Article Tags : Java Java-Functions Java-text package Java-BreakIterator Practice Tags : Java Similar Reads CharacterIterator current() method in Java with Examples The current() method of java.text.CharacterIterator interface in Java is used to get the current character that is to be read by this CharacterIterator. This method returns that current character. Syntax: public char current() Parameter: This method do not accept any parameter. Return Value: This me 1 min read BreakIterator next() method in Java with Examples The next() method of java.text.BreakIterator class is used to get the index of the next boundary ahead of the current boundary(boundary retrieved by calling current() method). it provides the offset of the first character of boundary which follows the current boundary pointed by BreakIterator. Synta 2 min read BreakIterator last() method in Java with Examples The last() method of java.text.BreakIterator class is used to get the index of the last boundary. It always return the offset of the last character of last boundary. Syntax: public abstract int last() Parameter: This method does not accept any parameter. Return Value: This method provides the index 2 min read BreakIterator first() method in Java with Examples The first() method of java.text.BreakIterator class is used to get the index of the first boundary.it always return the start index of first boundary.it provides the offset of first character of first boundary. Syntax: public abstract int first() Parameter: This method does not accept any parameter. 2 min read BreakIterator getText() method in Java with Examples The getText() method of java.text.BreakIterator class is used to get the text previously set by the setText() method in breakiterator.Syntax: public abstract CharacterIterator getText() Parameter: This method does not accept any parameter.Return Value: This method provides the text scanned previousl 2 min read Like