Friday, October 24, 2025
HomeLanguagesJavaMatcher reset(CharSequence) method in Java with Examples

Matcher reset(CharSequence) method in Java with Examples

The reset(CharSequence input) method of Matcher Class is used to reset this matcher and insert the input String passed as the parameter to this matcher.

Syntax:

public Matcher reset(CharSequence input)

Parameters: This method takes the parameter input which is the String to be inserted into matcher after getting reset.

Return Value: This method returns this Matcher after being reset with this input.

Below examples illustrate the Matcher.reset() method:

Example 1:




// Java code to illustrate reset() 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 current matcher state
        System.out.println("Current Matcher: "
                           + matcher.toMatchResult());
  
        // Reset the Matcher using reset() method
        String newStringToBeMatched
            = "GeeksGeeksGeeks";
        matcher = matcher
                      .reset(newStringToBeMatched);
  
        // Get the current matcher state
        System.out.println("Current Matcher after Reset: "
                           + matcher.toMatchResult());
    }
}


Output:

Current Matcher: java.util.regex.Matcher[pattern=Geeks region=0,13 lastmatch=]
Current Matcher after Reset: java.util.regex.Matcher[pattern=Geeks region=0,15 lastmatch=]

Example 2:




// Java code to illustrate reset() 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 current matcher state
        System.out.println("Current Matcher: "
                           + matcher.toMatchResult());
  
        // Reset the Matcher using reset() method
        String newStringToBeMatched
            = "GFG means GeeksForGeeks";
        matcher = matcher
                      .reset(newStringToBeMatched);
  
        // Get the current matcher state
        System.out.println("Current Matcher after Reset: "
                           + matcher.toMatchResult());
    }
}


Output:

Current Matcher: java.util.regex.Matcher[pattern=GFG region=0,19 lastmatch=]
Current Matcher after Reset: java.util.regex.Matcher[pattern=GFG region=0,23 lastmatch=]

Reference: Oracle Doc

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS