Java中的equalsIgnoreCase()方法用于比較兩個字符串是否相等,忽略字符串中的大小寫。它的語法如下:
public boolean equalsIgnoreCase(String anotherString)
其中,anotherString
是要比較的字符串。
使用示例:
String str1 = "Hello";
String str2 = "hello";
String str3 = "HELLO";
boolean isEqual1 = str1.equalsIgnoreCase(str2); // true
boolean isEqual2 = str1.equalsIgnoreCase(str3); // true
System.out.println(isEqual1);
System.out.println(isEqual2);
在上述示例中,str1
和str2
是不區(qū)分大小寫的相等字符串,所以isEqual1
為true。而str1
和str3
是不區(qū)分大小寫的相等字符串,所以isEqual2
為true。
需要注意的是,該方法只比較兩個字符串是否相等,不比較字符串的其他屬性(如長度、內(nèi)容等)。