特定の入力文字列を含むことに基づいて、特定の数の配列エントリを返すようにこれを取得しようとしています。
/**
* This method returns a list of all words from
* the dictionary that include the given substring.
*/
public ArrayList<String> wordsContaining(String text)
{
ArrayList<String> contentCheck = new ArrayList<String>();
for(int index = 0; index < words.size(); index++)
{
if(words.contains(text))
{
contentCheck.add(words.get(index));
}
}
return contentCheck;
}
文字列ビットを含むエントリだけではなく、配列内のすべての値が異常に返される理由がわかりません。ありがとう!