equalsIgnoreCase()方法是用來比較兩個字符串是否相等,不區分大小寫。
使用方法如下:
String str1 = "Hello";
String str2 = "hello";
// 使用equalsIgnoreCase()方法比較兩個字符串是否相等
boolean isEqual = str1.equalsIgnoreCase(str2);
System.out.println(isEqual); // 輸出 true
在上面的例子中,str1和str2的值分別為"Hello"和"hello",雖然兩個字符串的大小寫不同,但是使用equalsIgnoreCase()方法比較時,返回的結果為true,說明兩個字符串相等。