在C#中,可以使用==
運算符來比較兩個字符串是否相等。示例如下:
string str1 = "hello";
string str2 = "world";
if(str1 == str2)
{
Console.WriteLine("字符串相等");
}
else
{
Console.WriteLine("字符串不相等");
}
如果需要忽略字符串的大小寫進行比較,可以使用String.Equals
方法并傳入StringComparison.OrdinalIgnoreCase
參數。示例如下:
string str1 = "Hello";
string str2 = "hello";
if(str1.Equals(str2, StringComparison.OrdinalIgnoreCase))
{
Console.WriteLine("字符串相等");
}
else
{
Console.WriteLine("字符串不相等");
}