📌  相关文章
📜  带有示例的Java中的 Matcher find(int) 方法

📅  最后修改于: 2022-05-13 01:55:09.513000             🧑  作者: Mango

带有示例的Java中的 Matcher find(int) 方法

Matcher 类find(int start)方法尝试在找到模式的输入序列的指定子序列号(作为参数传递)之后查找下一个子序列。它返回一个显示相同的布尔值。

句法:

public boolean find(int start)

参数:此方法采用参数start ,它是要找到下一个子序列的子序列号。

返回值:此方法返回一个布尔值,显示输入序列的子序列是否找到此匹配器的模式

异常:如果 start 小于零或大于输入序列的长度,此方法将引发IndexOutOfBoundsException

下面的示例说明了 Matcher.find() 方法:

示例 1:

// Java code to illustrate find() method
  
import java.util.regex.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the regex to be checked
        String regex = "Geeks";
  
        // Create a pattern from regex
        Pattern pattern
            = Pattern.compile(regex);
  
        // Get the String to be matched
        String stringToBeMatched
            = "GeeksForGeeks";
  
        // Create a matcher for the input String
        Matcher matcher
            = pattern
                  .matcher(stringToBeMatched);
  
        // Get the subsequence
        // using find() method
        System.out.println(matcher.find(1));
    }
}
输出:
true

示例 2:

// Java code to illustrate find() method
  
import java.util.regex.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the regex to be checked
        String regex = "GFG";
  
        // Create a pattern from regex
        Pattern pattern
            = Pattern.compile(regex);
  
        // Get the String to be matched
        String stringToBeMatched
            = "GFGFGFGFGFGFGFGFGFG";
  
        // Create a matcher for the input String
        Matcher matcher
            = pattern
                  .matcher(stringToBeMatched);
  
        // Get the subsequence
        // using find() method
        System.out.println(matcher.find(0));
    }
}
输出:
true

参考: Oracle 文档