El método precedente() de la clase java.text.BreakIterator se utiliza para obtener el índice del carácter del último límite que precede al límite del desplazamiento de caracteres especificado. Proporciona el desplazamiento del primer carácter del límite que sigue o precede al límite actual señalado por BreakIterator.
Sintaxis:
public int preceding(int offset)
Parámetro: toma offset del carácter para el cual se ha de encontrar el límite anterior.
Valor de retorno: este método proporciona el índice de límite que precede al desplazamiento de caracteres especificado.
Excepción: este método arroja IllegalArgumentException si el índice especificado es menor que el primer límite de texto o mayor que el último límite de texto.
A continuación se muestran los ejemplos para ilustrar el método anterior() :
Ejemplo 1:
// Java program to demonstrate preceding() 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"); // setting the current position to 11 // by skipping 3 boundaries wb.next(3); // getting the current text boundary current = wb.current(); // display the result System.out.println( "current position before" + " calling preceding() : " + current); // calling preceding() method next = wb.preceding(6); // display the result System.out.println( "\ncurrent position after" + " calling 1st preceding() : " + next); // calling preceding() method next = wb.preceding(11); // display the result System.out.println( "\ncurrent position after" + " calling 2nd preceding() : " + next); } }
current position before calling preceding() : 11 current position after calling 1st preceding() : 4 current position after calling 2nd preceding() : 6
Ejemplo 2:
// Java program to demonstrate preceding() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { try { // 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"); // setting the current position to 11 // by skipping 3 boundaries wb.next(3); // getting the current text boundary current = wb.current(); // display the result System.out.println( "current position before" + " calling preceding() : " + current); // calling preceding() method next = wb.preceding(6); // display the result System.out.println( "\ncurrent position after" + " calling 1st preceding() : " + next); // calling preceding() method next = wb.preceding(-1); // display the result System.out.println( "\ncurrent position after" + " calling 2nd preceding() : " + next); } catch (IllegalArgumentException e) { System.out.println( "\noffset is less than the first boundary"); System.out.println("Exception thrown : " + e); } } }
current position before calling preceding() : 11 current position after calling 1st preceding() : 4 offset is less than the first boundary Exception thrown : java.lang.IllegalArgumentException: offset out of bounds
Referencia: https://docs.oracle.com/javase/9/docs/api/java/text/BreakIterator.html#preceding-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