The
toString() method of
Matcher Class is used to get the String representation of this matcher. This method is derived from the Object Class and behaves in the similar way.
Syntax:
public String toString()
Parameters: This method takes no parameters.
Return Value: This method returns a
String value which is the String representation of this matcher.
Below examples illustrate the Matcher.toString() method:
Example 1:
Output:
java.util.regex.Matcher[pattern=(Geeks) region=0,25 lastmatch=]
Example 2: