如何在 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

更新日期:26-Feb-2020

1K+ 阅读量

开启您的 职业生涯

通过完成课程获得认证

开始
广告