如何测试字符串是否包含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

以上是 如何测试字符串是否包含Java中的特定单词? 的全部内容, 来源链接: utcz.com/z/331152.html

回到顶部