equalsIgnoreCase()
方法用于比較兩個字符串,忽略大小寫
public class Main {
public static void main(String[] args) {
String str1 = "Hello";
String str2 = "hello";
boolean result = str1.equalsIgnoreCase(str2);
if (result) {
System.out.println("The strings are equal, ignoring case.");
} else {
System.out.println("The strings are not equal.");
}
}
}
在這個例子中,我們創建了兩個字符串 str1
和 str2
。然后,我們使用 equalsIgnoreCase()
方法比較它們,并將結果存儲在布爾變量 result
中。接下來,我們使用 if-else
語句根據 result
的值輸出相應的信息。如果 result
為 true
,則表示字符串相等(忽略大小寫),否則表示字符串不相等。