在不同編程語言中,實現類似 equalsIgnoreCase
的功能(即比較兩個字符串是否相等,忽略大小寫)可以通過以下方法:
def equals_ignore_case(str1, str2):
return str1.lower() == str2.lower()
public static boolean equalsIgnoreCase(String str1, String str2) {
return str1.equalsIgnoreCase(str2);
}
function equalsIgnoreCase(str1, str2) {
return str1.toLowerCase() === str2.toLowerCase();
}
public static bool EqualsIgnoreCase(string str1, string str2) {
return str1.Equals(str2, StringComparison.OrdinalIgnoreCase);
}
def equals_ignore_case(str1, str2)
str1.downcase == str2.downcase
end
function equalsIgnoreCase($str1, $str2) {
return strtolower($str1) == strtolower($str2);
}
這些示例展示了如何在不同編程語言中實現類似 equalsIgnoreCase
的功能。基本思路是將兩個字符串轉換為全小寫或全大寫,然后進行比較。