使用模式匹配器正则表达式类
在以下示例中:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您已反转字符串:
Pattern
编译正则表达式,Matcher
适用于输入。您应该:
另请注意,如果您想要不区分大小写的匹配,则需要使用以下任一方式初始化模式:
You have inverted the strings:
Pattern
compiles the regex,Matcher
applies on an input.You should have:
Also note that if you want case insensitive matching, you want to initialize your pattern with either of: