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



描述

java.util.regex.MatchResult.end() 方法返回在此匹配期间给定组捕获的子序列的最后一个字符之后的偏移量。

声明

以下是针对 java.util.regex.MatchResult.end() 方法的声明。

int end(int group)

参数

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

返回值

匹配的最后一个字符之后的偏移量。

异常

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

示例

以下示例展示 java.util.regex.MatchResult.end(int group) 方法的使用方式。

package com.tutorialspoint;

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

public class MatchResultDemo {
   private static final String REGEX = "(.*)(\\d+)(.*)";
   private static final String INPUT = "This is a sample Text, 1234, with numbers in between.";

   public static void main(String[] args) {
      // create a pattern
      Pattern pattern = Pattern.compile(REGEX);
      
      // get a matcher object
      Matcher matcher = pattern.matcher(INPUT); 

      if(matcher.find()) {
         //get the MatchResult Object 
         MatchResult result = matcher.toMatchResult();

         //Prints the offset after the last character of the subsequence captured by the given group during this match.
         System.out.println("Second Capturing Group - Match String - end(1): "+result.end(1));         
      }
   }
}

让我们编译并运行以上程序,将产生以下结果 -

Second Capturing Group - Match String - end(1): 26
javaregex_matchresult.htm
广告