El método end() de la interfaz MatchResult se usa para obtener el desplazamiento después del último carácter coincidente del resultado de la coincidencia ya realizado.
Sintaxis:
public int end()
Parámetros: Este método no toma ningún parámetro.
Valor devuelto: este método devuelve el desplazamiento después del último carácter coincidente
Excepción: este método arroja IllegalStateException si aún no se ha intentado ninguna coincidencia o si la operación de coincidencia anterior falló.
Los siguientes ejemplos ilustran el método MatchResult.end():
Ejemplo 1:
// Java code to illustrate end() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "(G*s)"; // Create a pattern from regex Pattern pattern = Pattern.compile(regex); // Get the String to be matched String stringToBeMatched = "GeeksForGeeks"; // Create a matcher for the input String MatchResult matcher = pattern .matcher(stringToBeMatched); while (((Matcher)matcher).find()) { // Get the last index of match result System.out.println(matcher.end()); } } }
Producción:
5 13
Ejemplo 2:
// Java code to illustrate end() method import java.util.regex.*; public class GFG { public static void main(String[] args) { // Get the regex to be checked String regex = "(G*G)"; // Create a pattern from regex Pattern pattern = Pattern.compile(regex); // Get the String to be matched String stringToBeMatched = "GFG FGF GFG"; // Create a matcher for the input String MatchResult matcher = pattern .matcher(stringToBeMatched); while (((Matcher)matcher).find()) { // Get the last index of match result System.out.println(matcher.end()); } } }
Producción:
1 3 6 9 11
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