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



说明

java.util.regex.Matcher.region(int start, int end) 方法设置该匹配器的区域限制。区域是将搜索以寻找匹配项的输入序列的部分。调用此方法会重置匹配器,然后将区域设置为从 start 参数指定的位置开始,并从 end 参数指定的位置结束。

声明

以下是 java.util.regex.Matcher.region(int start, int end) 方法的声明。

public Matcher region(int start, int end)

参数

  • start − 开始搜索的位置(包含在内)。

  • end − 结束搜索的位置(不包含在内)。

返回值

此匹配器。

示例

以下示例显示如何使用 java.util.regex.Matcher.region(int start, int end) 方法。

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);
      matcher = matcher.region(0, 10);
      
      while(matcher.find()) {
         //Prints the offset after the last character matched.
         System.out.println("First Capturing Group, (a*b) Match String end(): "+matcher.end());    
      }     
   }
}

编译并运行上述程序,将产生以下结果 −

First Capturing Group, (a*b) Match String end(): 6
javaregex_matcher.htm
广告