扫码一下
查看教程更方便
Java matches() 方法用来检查这个字符串是否匹配给定的正则表达式。 以 str.matches(regex) 形式调用此方法会产生与表达式 Pattern.matches(regex, str) 完全相同的结果。
public boolean matches(String regex)
regex - 此字符串要匹配的正则表达式。
当且仅当此字符串与给定的正则表达式匹配时,此方法才返回 true。
public class Main { public static void main(String args[]) { String Str = new String("Welcome to jiyik.com"); System.out.print("Return Value :" ); System.out.println(Str.matches("(.*)jiyik(.*)")); System.out.print("Return Value :" ); System.out.println(Str.matches("jiyik")); System.out.print("Return Value :" ); System.out.println(Str.matches("Welcome(.*)")); } }
上面示例编译运行结果如下
Return Value :true
Return Value :false
Return Value :true