gpt4 book ai didi

java - 使用 Java 中的正则表达式计算文本文件中模式的出现次数

转载 作者:行者123 更新时间:2023-12-01 09:11:41 27 4
gpt4 key购买 nike

我正在从文件中读取文本,并尝试计算“Lady”、“Lucy”和“Lazy”等词的出现次数。我预计计数为 3,但结果为 0。请帮我找出问题所在。

FileReader r= new FileReader("C:\\Users\\beath.txt");           
BufferedReader bfr=new BufferedReader(r);
String x="L[a-z]{2}y";
String Y="";

while ((Y=bfr.readLine())!=null)
{
String[] words = Y.split(" ");
Pattern p = Pattern.compile(x);
for (String word : words)
m = p.matcher(word);
if(m.find())
count++;
}

最佳答案

您只匹配每行的最后一个单词。这是格式正确的代码:

while ((Y=bfr.readLine())!=null)
{
String[] words = Y.split(" ");
Pattern p = Pattern.compile(x);
for (String word : words)
m = p.matcher(word);

// this only happens after the for loop!!
if(m.find())
count++;
}

要修复此问题,只需使用大括号将 if 包含在循环体中即可:

while ((Y=bfr.readLine())!=null)
{
String[] words = Y.split(" ");
Pattern p = Pattern.compile(x);
for (String word : words) {
m = p.matcher(word);
if(m.find())
count++;
}
}

关于java - 使用 Java 中的正则表达式计算文本文件中模式的出现次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40879783/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com