gpt4 book ai didi

java - 在文本文件中查找特定单词并对其进行计数

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:42:52 24 4
gpt4 key购买 nike

有人可以帮我写代码吗?如何在文本文件中搜索任何单词并计算重复的次数?

例如test.txt:

hi
hola
hey
hi
bye
hoola
hi

如果我想知道在 test.txt 中重复了多少次,“嗨”程序必须说“重复 3 次”

我希望你明白我想要什么,谢谢你的回答。

最佳答案

public int countWord(String word, File file) {
int count = 0;
Scanner scanner = new Scanner(file);
while (scanner.hasNextLine()) {
String nextToken = scanner.next();
if (nextToken.equalsIgnoreCase(word))
count++;
}
return count;
}

关于java - 在文本文件中查找特定单词并对其进行计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13029922/

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