java.time.Matcher.find(int start)
方法重置此匹配器,然後嘗試從指定的索引處開始查找與模式匹配的輸入序列的下一個子序列。
聲明
以下是java.time.Matcher.find(int start)
方法的聲明。
public boolean find(int start)
參數
start
- 輸入字串中的起始索引。
返回值
當且僅當從給定索引開始的輸入序列的子序列與此匹配器的模式匹配時才為真
異常
IndexOutOfBoundsException
- 如果模式中沒有具有給定索引的捕獲組。
示例
以下示例顯示了java.time.Matcher.find(int start)
方法的用法。
package com.zaixian;
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(6)) {
//Prints the offset after the last character matched.
System.out.println("First Capturing Group, (a*b) Match String end(): "+matcher.end());
System.out.println("Second Capturing Group, (foo) Match String end(): "+matcher.end(1));
}
}
}
執行上面示例代碼,得到以下結果:
First Capturing Group, (a*b) Match String end(): 12
Second Capturing Group, (foo) Match String end(): 9