gpt4 book ai didi

java - 数一数使用 java 在文件中出现确切的单词

转载 作者:搜寻专家 更新时间:2023-11-01 01:21:03 24 4
gpt4 key购买 nike

我有一个要求,我必须在其中找到编号。特定单词出现在文件中的次数。例如。

String str = "Hi hello how are you. hell and heaven. hell, gjh, hello,sdnc ";

现在在这个字符串中我想数不。多次出现“ hell ”这个词。计数应包括“hell”、“hell”所有这些词,但不包括“hello”。所以根据给定的字符串,我希望计数为 2。

我使用了以下方法

第一:

int match = StringUtils.countMatches(str, "hell");

StringUtils 是 org.apache.commons.lang3 库

第二个:

int count = 0;
Pattern p = Pattern.compile("hell");
Matcher m = p.matcher(str);
while (m.find()) {
count++;
}

第三

int count =0;
String[] s = str.split(" ");
for(String word: s)
if(word.equals("hell")
count++;

第一种方法给出 4 作为答案,第三种方法给出 1 作为答案。

无论如何请建议我可以得到 2 作为答案并满足我的要求。

最佳答案

您应该在正则表达式中使用单词边界匹配器:

Pattern.compile("\\bhell\\b");

关于java - 数一数使用 java 在文件中出现确切的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29744167/

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