単語が TXT ファイルに出現する回数を数えようとすると問題が発生します。
- テキストフィールド ( txta )を作成します
- アクションを適用するボタンを作成します ( btn )
- ファイルの内容が表示されるテキストエリア(エリア)を作成します
ファイルを選択すると、ファイルの内容がエリアに表示されます。次に、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;
}