java.util.regex.Matcher.group() 方法



描述

java.time.Matcher.group(int group) 方法返回在上一次匹配操作期间,给定组捕获的输入子序列。

声明

以下是 java.time.Matcher.group(int group) 方法的声明。

public String group(int group)

参数

  • group − 在此匹配器的模式中捕获组的索引。

返回值

在上一次匹配期间组中捕获的(可能有空的)子序列,或者如果组未能匹配输入的部分,则为 null。

  • IllegalStateException − 如果尚未尝试匹配,或如果先前的匹配操作失败。

  • IndexOutOfBoundsException − 如果模式中没有具有给定索引的捕获组。

示例

以下示例显示了 java.time.Matcher.group(int group) 方法的使用方法。

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("Second Capturing Group : "+matcher.group(1));
      }      
   }
}

让我们编译并运行上面的程序,这将产生以下结果 −

Second Capturing Group : aab
javaregex_matcher.htm
广告