Wednesday, July 3, 2024
HomeLanguagesJavaMatcher pattern() method in Java with Examples

Matcher pattern() method in Java with Examples

The pattern() method of Matcher Class is used to get the pattern to be matched by this matcher.

Syntax:

public Pattern pattern()

Parameters: This method do not accepts any parameter.

Return Value: This method returns a Pattern which is the pattern to be matched by this Matcher.

Below examples illustrate the Matcher.pattern() method:

Example 1:




// Java code to illustrate pattern() 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 Pattern using pattern() method
        System.out.println("Pattern: "
                           + matcher.pattern());
    }
}


Output:

Pattern: Geeks

Example 2:




// Java code to illustrate pattern() 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 Pattern using pattern() method
        System.out.println("Pattern: "
                           + matcher.pattern());
    }
}


Output:

Pattern: GFG

Reference: Oracle Doc

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments