使用模式匹配器正则表达式类

发布于 2024-12-22 20:15:54 字数 458 浏览 1 评论 0原文

在以下示例中:

class ZiggyTest2{  
        public static void main(String[] args){  

            Pattern p = Pattern.compile("Water water WATER everywhere");
            Matcher m = p.matcher("water");

            while(m.find()){
                System.out.println(m.start() + " " + m.group());
            }

            System.out.println("[Done]");
        }    
    }  

m.find() 方法始终为 false,因此它找不到字符串“water”。这是什么原因呢?

In the following example:

class ZiggyTest2{  
        public static void main(String[] args){  

            Pattern p = Pattern.compile("Water water WATER everywhere");
            Matcher m = p.matcher("water");

            while(m.find()){
                System.out.println(m.start() + " " + m.group());
            }

            System.out.println("[Done]");
        }    
    }  

The m.find() method is always false so it is not finding the string "water". What is the reason for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

知你几分 2024-12-29 20:15:54

您已反转字符串:

  • Pattern 编译正则表达式,
  • Matcher 适用于输入。

您应该:

        Pattern p = Pattern.compile("water");
        Matcher m = p.matcher("Water water WATER everywhere");

另请注意,如果您想要不区分大小写的匹配,则需要使用以下任一方式初始化模式:

        Pattern p = Pattern.compile("water", Pattern.CASE_INSENSITIVE);
        // or:
        Pattern p = Pattern.compile("(?i)water");

You have inverted the strings:

  • Pattern compiles the regex,
  • Matcher applies on an input.

You should have:

        Pattern p = Pattern.compile("water");
        Matcher m = p.matcher("Water water WATER everywhere");

Also note that if you want case insensitive matching, you want to initialize your pattern with either of:

        Pattern p = Pattern.compile("water", Pattern.CASE_INSENSITIVE);
        // or:
        Pattern p = Pattern.compile("(?i)water");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文