在 C# 中,比較字符串時可以使用 ==
運算符或 String.Equals()
方法。
使用 ==
運算符比較字符串時,它會比較字符串的字典順序,如果相等則返回 true
,否則返回 false
。例如:
string str1 = "hello";
string str2 = "world";
string str3 = "hello";
bool result1 = (str1 == str2); // false
bool result2 = (str1 == str3); // true
使用 String.Equals()
方法比較字符串時,它可以比較字符串的字典順序,也可以比較字符串的內(nèi)容是否相等。例如:
string str1 = "hello";
string str2 = "world";
string str3 = "hello";
bool result1 = String.Equals(str1, str2); // false
bool result2 = String.Equals(str1, str3); // true
除了比較字符串是否相等之外,還可以使用 String.Compare()
方法來比較字符串的字典順序。例如:
string str1 = "hello";
string str2 = "world";
string str3 = "hello";
int result1 = String.Compare(str1, str2); // negative value
int result2 = String.Compare(str1, str3); // 0
int result3 = String.Compare(str2, str3); // positive value
需要注意的是,當比較包含特殊字符的字符串時,需要考慮 Unicode 編碼和大小寫敏感性等問題。