如何测试字符串是否在 Java 中包含特定单词?


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

示例

在线演示

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

输出

true

更新于:26-02-2020

2 千+ 查看

开启您的职业

完成课程以获得认证

开始吧
广告