当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Pattern matches(String ,CharSequence)用法及代码示例


Java中Pattern类的matchs(String,CharSequence)方法用于回答正则表达式在输入上是否匹配。为此,我们编译给定的正则表达式,并尝试将给定的输入与正则表达式进行匹配,其中正则表达式和输入均作为参数传递给方法。如果要多次使用某个模式,则将其编译一次并重新使用它将比每次调用此方法都更加有效。

用法:

public static boolean matches(String regex, CharSequence input)

参数:此方法接受两个参数:


  • regex:此参数表示要编译的表达式。
  • input:要匹配的字符序列。

返回值:此方法返回一个布尔值,回答正则表达式是否与输入匹配。

以下示例程序旨在说明matchs(String,CharSequence)方法:

程序1:

// Java program to demonstrate 
// Pattern.matches(String, CharSequence) method 
  
import java.util.regex.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create a REGEX String 
        String REGEX = "(.*)(ee)(.*)?"; 
  
        // create the string 
        // in which you want to search 
        String actualString 
            = "geeksforgeeks"; 
  
        // use matches method to check the match 
        boolean matcher = Pattern.matches(REGEX, actualString); 
  
        // print values if match found 
        if (matcher) { 
            System.out.println("match found for Regex."); 
        } 
        else { 
            System.out.println("No match found for Regex."); 
        } 
    } 
}
输出:
match found for Regex.

程序2:

// Java program to demonstrate 
// Pattern.matches(String, CharSequence) method 
  
import java.util.regex.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create a REGEX String 
        String REGEX = "(.*)(welcome)(.*)?"; 
  
        // create the string 
        // in which you want to search 
        String actualString 
            = "The indian team wins worldcup"; 
  
        // use matches() method to check the match 
        boolean matcher = Pattern.matches(REGEX, actualString); 
  
        // print values if match found 
        if (matcher) { 
            System.out.println("match found for Regex."); 
        } 
        else { 
            System.out.println("No match found for Regex."); 
        } 
    } 
}
输出:
No match found for Regex.

参考:
https://docs.oracle.com/javase/10/docs/api/java/util/regex/Pattern.html#matches(java.lang.String, java.lang.CharSequence)



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Pattern matches(String ,CharSequence) method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。