El método regionEnd() de Matcher Class se usa para obtener el endIndex de la región para que coincida con el patrón en el comparador actual. Este método devuelve un valor entero que es el índice final de la región de este comparador.
Sintaxis:
public int regionEnd()
Parámetros: Este método no toma parámetros.
Valor devuelto: este método devuelve un valor entero que es el índice final de la región de este comparador.
Los siguientes ejemplos ilustran el método Matcher.regionEnd():
Ejemplo 1:
// Java code to illustrate regionEnd() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "(Geeks)"; // Create a pattern from regex Pattern pattern = Pattern.compile(regex); // Get the String to be matched String stringToBeMatched = "GeeksForGeeks Geeks for For Geeks Geek"; // Create a matcher for the input String Matcher matcher = pattern.matcher(stringToBeMatched); // Get previous endIndex of region // using regionEnd() method System.out.println("Before changing region, " + " Region ends from: " + matcher.regionEnd()); // Restrict the region to 0, 10 matcher = matcher.region(0, 10); // Get previous endIndex of region // using regionEnd() method System.out.println("After changing region, " + " Region ends from: " + matcher.regionEnd()); } }
Producción:
Before changing region, Region ends from: 38 After changing region, Region ends from: 10
Ejemplo 2:
// Java code to illustrate regionEnd() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "(F*F)"; // Create a pattern from regex Pattern pattern = Pattern.compile(regex); // Get the String to be matched String stringToBeMatched = "GFGFGFGFGFGFGFGFGFG FGF GFG GFG FGF"; // Create a matcher for the input String Matcher matcher = pattern.matcher(stringToBeMatched); // Get previous endIndex of region // using regionEnd() method System.out.println("Before changing region, " + " Region ends from: " + matcher.regionEnd()); // Restrict the region to 0, 5 matcher = matcher.region(0, 5); // Get previous endIndex of region // using regionEnd() method System.out.println("After changing region, " + " Region ends from: " + matcher.regionEnd()); } }
Producción:
Before changing region, Region ends from: 35 After changing region, Region ends from: 5
Referencia: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#regionEnd–
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA