作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Regex101 上测试了我的正则表达式所有的组都被捕获并与我的字符串相匹配。但现在当我尝试在 java 上使用它时,它返回给我一个
java.lang.IllegalStateException: No match found on line 9
String subjectCode = "02 credits between ----";
String regex1 = "^(\\d+).*credits between --+.*?$";
Pattern p1 = Pattern.compile(regex1);
Matcher m;
if(subjectCode.matches(regex1)){
m = p1.matcher(regex1);
m.find();
[LINE 9]Integer subjectCredits = Integer.valueOf(m.group(1));
System.out.println("Subject Credits: " + subjectCredits);
}
这怎么可能,问题出在哪里?
最佳答案
这是修复和优化(感谢@cricket_007):
String subjectCode = "02 credits between ----";
String regex1 = "(\\d+).*credits between --+.*";
Pattern p1 = Pattern.compile(regex1);
Matcher m = p1.matcher(subjectCode);
if (m.matches()) {
Integer subjectCredits = Integer.valueOf(m.group(1));
System.out.println("Subject Credits: " + subjectCredits);
}
您需要将输入字符串传递给匹配器
。作为一个小增强,您可以仅使用 1 个 Matcher#matches
,然后在存在匹配时访问捕获的组。正则表达式不需要 ^
和 $
因为使用 matches()
整个输入应该与模式匹配。
关于java - 匹配器返回不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33425557/
我是一名优秀的程序员,十分优秀!