在Java中,matches
方法用于检查一个字符串是否匹配指定的正则表达式。它的用法如下:
String str = "Hello, World!";
String regex = "Hello.*"; // 匹配以Hello开头的任意字符
if (str.matches(regex)) {
System.out.println("字符串匹配成功");
} else {
System.out.println("字符串匹配失败");
}
在上面的例子中,str.matches(regex)
会返回true,因为字符串"Hello, World!"符合正则表达式"Hello.*"的规则。
需要注意的是,matches
方法会尝试匹配整个字符串,如果只想匹配部分字符串,可以使用Matcher
类来实现。