C# 忽略大小写

在 C# 中,你可以通过以下几种方式来忽略大小写:

  1. 使用 ToLower 或 ToUpper 方法将字符串转换为全小写或全大写,然后进行比较。
  2. 使用 Compare 或 CompareOrdinal 方法,并传入正确的 StringComparer 实例以指示比较应该忽略大小写。
  3. 使用 Equals 方法并将 StringComparison.CurrentCultureIgnoreCase 或 StringComparison.OrdinalIgnoreCase 作为参数传递给它。
  4. 如果你在使用 LINQ 进行查询,你可以使用 .ToLower() 或 .ToUpper() 方法在查询语句中忽略大小写。
  5. 在使用正则表达式时,可以使用 RegexOptions.IgnoreCase 标志来忽略大小写。

另外,还有一些内置的方法,例如 Contains 和 StartsWith 等,它们也提供了忽略大小写的重载版本。

 

例如1:

使用String.Equals方法并设置其ignoreCase参数为true

string str1 = "Hello World";  
string str2 = "hello world";  
  
if (String.Equals(str1, str2, StringComparison.OrdinalIgnoreCase))  
{  
    Console.WriteLine("Strings are equal.");  
}  
else  
{  
    Console.WriteLine("Strings are not equal.");  
}

在上述代码中,StringComparison.OrdinalIgnoreCase是一个枚举值,它告诉String.Equals方法忽略大小写。如果两个字符串在忽略大小写的情况下相等,那么这个方法就会返回true

此外,如果你想在字符串操作中普遍忽略大小写,你可能需要将所有字符串都转化为大写或小写,然后再进行比较。

例如2:

string str1 = "Hello World".ToUpper();  
string str2 = "hello world".ToUpper();  
  
if (str1 == str2)  
{  
    Console.WriteLine("Strings are equal.");  
}  
else  
{  
    Console.WriteLine("Strings are not equal.");  
}

在这个例子中,我们使用ToUpper方法将所有字符串转化为大写,然后再进行比较。这样就可以在不考虑大小写的情况下比较字符串了。

 

 

你可能感兴趣的:(C#,c#)