Método Matcher matches() en Java con ejemplos

El método matches() de Matcher Class se usa para obtener el resultado si este patrón coincide con este comparador o no. Devuelve un valor booleano que muestra lo mismo.

Sintaxis:

public boolean matches()

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

Valor devuelto: este método devuelve un valor booleano que muestra si este patrón coincide con este comparador o no.

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

Ejemplo 1:

// Java code to illustrate matches() 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 matches() method
        System.out.println("Result: "
                           + matcher.matches());
    }
}
Producción:

Result: false

Ejemplo 2:

// Java code to illustrate matches() 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 matches() method
        System.out.println("Result: "
                           + matcher.matches());
    }
}
Producción:

Result: false

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 *