在Java中,可以使用equalsIgnoreCase()方法來忽略大小寫來檢查字符串是否包含另一個字符串。示例如下:
String str1 = "Hello World";
String str2 = "hello";
if (str1.toLowerCase().contains(str2.toLowerCase())) {
System.out.println("String contains another string ignoring case");
} else {
System.out.println("String does not contain another string ignoring case");
}
在上面的示例中,我們使用toLowerCase()方法將兩個字符串轉換為小寫,然后再使用contains()方法來檢查字符串是否包含另一個字符串。這樣可以忽略大小寫來進行比較。