如何在 Java 中以不区分大小写的方式检查一个字符串中是否包含另一个字符串?


一种方法是使用toLowerCase()toUpperCase()方法将两个字符串转换为小写或大写,然后进行测试。

示例

现场演示

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

输出

true

更新于: 2020 年 2 月 26 日

1000+ 浏览

开启你的 职业生涯

完成课程获得认证

开始
广告