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

描述

java.time.Matcher.end(int group) 方法返回在上一次匹配操作期间由给定组捕获的子序列的最后一个字符之后的偏移量。


声明

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

public int end(int group)

参数

  • group − 此匹配器模式中groupCount的索引。


返回值

组捕获的最后一个字符之后的偏移量,如果匹配成功但组本身没有匹配任何内容,则为 -1。


异常

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

  • IndexOutOfBoundsException − 如果模式中没有给定索引的groupCount。


示例

下面的例子展示了 java.time.Matcher.end(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);
      
      while(matcher.find()) {
         //Prints the offset after the last character matched.
         System.out.println("Second Capturing Group, (foo) Match String end(): "+matcher.end(1));
      }      
   }
}

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

Second Capturing Group, (foo) Match String end(): 3
Second Capturing Group, (foo) Match String end(): 9
Second Capturing Group, (foo) Match String end(): 14

❮ java 正则表达式 - Matcher 匹配器