El método next() de la clase java.text.BreakIterator se utiliza para obtener el índice del siguiente límite enésimo del límite actual (límite recuperado llamando al método current()). Proporciona el desplazamiento del primer carácter del límite que sigue o precede al límite actual señalado por BreakIterator.
Sintaxis:
public abstract int next(int n)
Parámetro: toma n (número de límites a omitir) como parámetro. si n es positivo, saltará los límites en la dirección de avance; de lo contrario, los saltará en la dirección de retroceso.
Valor de retorno: este método proporciona el índice del siguiente límite n desde el límite actual.
A continuación se muestran los ejemplos para ilustrar el método next() :
Ejemplo 1:
// Java program to demonstrate next() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing with zero int current = 0, next = 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 next = wb.next(2); // display the result System.out.println( "\ncurrent position after" + " calling 1st next() : " + next); // calling next method next = wb.next(-1); // display the result System.out.println( "\ncurrent position after" + " calling 2nd next() : " + next); } }
current position before calling next() : 0 current position after calling 1st next() : 6 current position after calling 2nd next() : 4
Ejemplo 2:
// Java program to demonstrate next() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { // creating and initializing with zero int current = 0, next = 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 next = wb.next(1); // display the result System.out.println( "\ncurrent position after" + " calling 1st next() : " + next); // calling next method next = wb.next(2); // display the result System.out.println( "\ncurrent position after" + " calling 2nd next() : " + next); } }
current position before calling next() : 0 current position after calling 1st next() : 4 current position after calling 2nd next() : 11
Referencia: https://docs.oracle.com/javase/9/docs/api/java/text/BreakIterator.html#next-int-
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA