java.util.regex.Matcher.group() Method



Description

The java.time.Matcher.group() method attempts to find the next subsequence of the input sequence that matches the pattern.

Declaration

Following is the declaration for java.time.Matcher.group() method.

public String group()

Return Value

The (possibly empty) subsequence matched by the previous match, in string form.

  • IllegalStateException − If no match has yet been attempted, or if the previous match operation failed.

Example

The following example shows the usage of java.time.Matcher.group() method.

package com.tutorialspoint;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class MatcherDemo {
   private static String REGEX = "(a*b)(foo)";
   private static String INPUT = "aabfooaabfooabfoob";
   private static String REPLACE = "-";
   
   public static void main(String[] args) {
      Pattern pattern = Pattern.compile(REGEX);
      
      // get a matcher object
      Matcher matcher = pattern.matcher(INPUT);
      
      if(matcher.find()) {
         //Prints the offset after the last character matched.
         System.out.println("First Capturing Group: "+matcher.group());    
      }      
   }
}

Let us compile and run the above program, this will produce the following result −

First Capturing Group: aabfoo
javaregex_matcher.htm
Advertisements