Java String matches() 方法
示例
检查字符串是否与正则表达式匹配
String regex = "cat|dog|fish";
System.out.println("cat".matches(regex));
System.out.println("dog".matches(regex));
System.out.println("catfish".matches(regex));
System.out.println("doggy bag".matches(regex));
定义与用法
The matches()
方法搜索字符串中与正则表达式匹配的内容,并返回匹配项。
语法
public String matches(String regex)
参数值
参数 | 描述 |
---|---|
regex | 正则表达式 |
技术细节
返回 | A boolean valuetrue 如果正则表达式完全匹配字符串false 如果它与字符串不匹配。 |
---|
❮ String 方法