Método Matcher toMatchResult() en Java con ejemplos

El método toMatchResult() de Matcher Class se usa para obtener el estado de resultado actual de este Matcher.

Sintaxis:

public MatchResult toMatchResult()

Parámetros: Este método no toma ningún parámetro.

Valor devuelto: este método devuelve un resultado de coincidencia con el estado de resultado de coincidencia actual de este Matcher.

Los siguientes ejemplos ilustran el método Matcher.toMatchResult():

Ejemplo 1:

// Java code to illustrate toMatchResult() 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";
  
        // Create a matcher for the input String
        Matcher matcher
            = pattern
                  .matcher(stringToBeMatched);
  
        // Get the result state
        // using toMatchResult() method
        System.out.println("Result: "
                           + matcher.toMatchResult());
    }
}
Producción:

Resultado: java.util.regex.Matcher[pattern=Geeks region=0, 13 lastmatch=]

Ejemplo 2:

// Java code to illustrate toMatchResult() method
  
import java.util.regex.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the regex to be checked
        String regex = "GFG";
  
        // Create a pattern from regex
        Pattern pattern
            = Pattern.compile(regex);
  
        // Get the String to be matched
        String stringToBeMatched
            = "GFGFGFGFGFGFGFGFGFG";
  
        // Create a matcher for the input String
        Matcher matcher
            = pattern
                  .matcher(stringToBeMatched);
  
        // Get the result state
        // using toMatchResult() method
        System.out.println("Result: "
                           + matcher.toMatchResult());
    }
}
Producción:

Resultado: java.util.regex.Matcher[patrón=región GFG=0, 19 última coincidencia=]

Referencia: documento de Oracle

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *