Pattern.matches()期望 整个 字符串匹配,而不仅仅是子字符串。
使用
.find()正则表达式匹配器对象的方法代替:
Pattern regex = Pattern.compile("^[01]r\s");Matcher regexMatcher = regex.matcher(current_tag);foundMatch = regexMatcher.find();
欢迎分享,转载请注明来源:内存溢出
Pattern.matches()期望 整个 字符串匹配,而不仅仅是子字符串。
使用
.find()正则表达式匹配器对象的方法代替:
Pattern regex = Pattern.compile("^[01]r\s");Matcher regexMatcher = regex.matcher(current_tag);foundMatch = regexMatcher.find();
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)