A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/java/matcher-matches-method-in-java-with-examples/ below:

Matcher matches() method in Java with Examples

Matcher matches() method in Java with Examples

Last Updated : 26 Nov, 2018

The

matches()

method of

Matcher Class

is used to get the result whether this pattern matches with this matcher or not. It returns a boolean value showing the same.

Syntax:
public boolean matches()
Parameters:

This method do not takes any parameter.

Return Value:

This method returns a

boolean value

showing whether this pattern matches with this matcher or not. Below examples illustrate the Matcher.matches() method:

Example 1: Java
// 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());
    }
}
Example 2: Java
// 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());
    }
}
Reference: Oracle Doc

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4