Método Matcher lookingAt() en Java con ejemplos

El método lookingAt() de Matcher Class intenta hacer coincidir el patrón parcial o totalmente en el comparador. Devuelve un valor booleano que muestra si el patrón coincidió parcial o totalmente desde el inicio del patrón.

Sintaxis:

public boolean lookingAt()

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

Valor devuelto: este método devuelve un valor booleano que muestra si un prefijo de la secuencia de entrada coincide con el patrón de este comparador.

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

Ejemplo 1:

// Java code to illustrate lookingAt() 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 possible result
        // using lookingAt() method
        System.out.println(matcher.lookingAt());
    }
}
Producción:

true

Ejemplo 2:

// Java code to illustrate lookingAt() 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 possible result
        // using lookingAt() method
        System.out.println(matcher.lookingAt());
    }
}
Producción:

true

Referencia: https://docs.oracle.com/javase/9/docs/api/java/util/regex/Matcher.html# lookingAt–

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 *