可能性の重複:私は別の文字列内の文字列を検索する方法を
How to see if a substring exists inside another string in Java 1.4別の文字列で文字列を検索するには?
?
これは私が話しているかの例です:
String word = "cat";
String text = "The cat is on the table";
Boolean found;
found = findInString(word, text); //this method is what I want to know
文字列「という言葉は」文字列「テキスト」である場合、メソッド「findInString(文字列、文字列)」他trueを返しますfalseを返します。