Método Matcher toString() en Java con ejemplos

El método toString() de Matcher Class se usa para obtener la representación de string de este comparador. Este método se deriva de la clase de objeto y se comporta de manera similar.

Sintaxis:

public String toString()

Parámetros: Este método no toma parámetros.

Valor de retorno: este método devuelve un valor de string que es la representación de string de este comparador.

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

Ejemplo 1:

// Java code to illustrate toString() 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
            = " Geeks for For Geeks Geek";
  
        // Create a matcher for the input String
        Matcher matcher
            = pattern.matcher(stringToBeMatched);
  
        // Get the String representation of this matcher
        // using toString() method
        System.out.println(matcher.toString());
    }
}
Producción:

java.util.regex.Matcher[pattern=(Geeks) region=0,25 lastmatch=]

Ejemplo 2:

// Java code to illustrate toString() 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
            = "FGF GFG GFG FGF";
  
        // Create a matcher for the input String
        Matcher matcher
            = pattern.matcher(stringToBeMatched);
  
        // Get the String representation of this matcher
        // using toString() method
        System.out.println(matcher.toString());
    }
}
Producción:

java.util.regex.Matcher[pattern=(GFG) region=0,15 lastmatch=]

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

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 *