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

前端之家收集整理的这篇文章主要介绍了简单的Java正则表达式匹配器无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
代码
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

我在这做错了什么?

解决方法

您需要在Matcher上调用 find(),然后才能调用group()和相关函数查询匹配的文本或对其进行操作(start(),end(),appendReplacement(StringBuffer sb,String replacement)等).

所以在你的情况下:

if (m.find()) {
    System.out.println("id = " + m.group(1));
}

这将找到第一个匹配(如果有)并提取与正则表达式匹配的第一个捕获组.如果要在输入字符串中查找所有匹配项,请将if更改为while循环.

原文链接:https://www.f2er.com/java/128032.html

猜你在找的Java相关文章