当我尝试计算某个单词在 TXT 文件中出现的次数时遇到问题。
- 我创建了一个文本字段(txta)
- 我创建了一个按钮来应用操作(btn)
- 我创建了一个显示文件内容的textarea ( area )
当我选择文件时,文件的内容显示在area中。然后我输入txta中的单词进行搜索。然后我单击btn,但代码不起作用。
public int contarPalabras(String chain, String word) {
// English translation:
// Receive a string and a word and return the amount of times
// that the word was found in the string.
// If the letter is not found, return (-1).
int cant = 0;
int intIndex = chain.indexOf(word);
if (intIndex == -1) {
cant = -1;
} else {
cant = intIndex;
}
return cant;
}