简单的Java正则表达式匹配器无法正常工作

时间:2013-03-01 08:05:00

标签: java regex

代码:

import java.util.regex.*;

public class eq {
    public static void main(String []args) {
        String str1 = "some=String&Here&modelId=324";
        Pattern rex = Pattern.compile(".*modelId=([0-9]+).*");
        Matcher m = rex.matcher(str1);
        System.out.println("id = " + m.group(1));
    }
}

错误:

Exception in thread "main" java.lang.IllegalStateException: No match found

我在这里做错了什么?

2 个答案:

答案 0 :(得分:17)

您需要在Matcher上致电find(),然后才能调用group()以及查询匹配文本或对其进行操作的相关功能(start(),{{1 },end()等。)

所以在你的情况下:

appendReplacement(StringBuffer sb, String replacement)

这将找到第一个匹配(如果有)并提取与正则表达式匹配的第一个捕获组。如果要在输入字符串中找到所有匹配项,请将if (m.find()) { System.out.println("id = " + m.group(1)); } 更改为if

答案 1 :(得分:2)

您必须在致电group()之前添加此行:

m.find();

这会将指针移动到下一个匹配的开头(如果有) - 如果找到匹配,则该方法返回true。

通常,这就是你使用它的方式:

if (m.find()) {
    // access groups found. 
}