如何确定一个字符串在Java中是否包含另一个字符串?

当且仅当此字符串包含指定的char值序列时,java.lang.String.contains()方法才返回true。

示例

public class Sample {
   public static void main(String args[]){
      String str = "Hello how are you welcome to nhooo";
      String test = "nhooo";
      Boolean bool = str.contains(test);
      System.out.println(bool);
   }
}

输出结果

true