El método regionStart() de Matcher Class se usa para obtener el índice de inicio 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 de inicio de la región de este comparador.
Sintaxis:
public int regionStart()
Parámetros: Este método no toma parámetros.
Valor devuelto: este método devuelve un valor entero que es el índice de inicio de la región de este comparador.
Los siguientes ejemplos ilustran el método Matcher.regionStart():
Ejemplo 1:
// Java code to illustrate regionStart() 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 startIndex of region // using regionStart() method System.out.println("Before changing region, " + " Region starts from: " + matcher.regionStart()); // Restrict the region to 2, 10 matcher = matcher.region(2, 10); // Get previous startIndex of region // using regionStart() method System.out.println("After changing region, " + " Region starts from: " + matcher.regionStart()); } }
Producción:
Before changing region, Region starts from: 0 After changing region, Region starts from: 2
Ejemplo 2:
// Java code to illustrate regionStart() 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 startIndex of region // using regionStart() method System.out.println("Before changing region, " + " Region starts from: " + matcher.regionStart()); // Restrict the region to 5, 10 matcher = matcher.region(5, 10); // Get previous startIndex of region // using regionStart() method System.out.println("After changing region, " + " Region starts from: " + matcher.regionStart()); } }
Producción:
Before changing region, Region starts from: 0 After changing region, Region starts from: 5
Referencia: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html#regionStart–
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