執行不區分文化特性的字串比較
根據預設,String.Compare 方法會執行區分文化特性和區分大小寫的比較。 此方法也包含數個多載,提供一個 culture
參數,讓您指定要使用的文化,以及一個 comparisonType
參數,讓您指定要使用的比較規則。 呼叫這些方法而非預設的多載,能夠消除在特定方法呼叫中所使用規則的任何模糊不清,並清楚說明特定比較是否考慮文化差異或不考慮文化差異。
備註
String.CompareTo 方法的兩個多載都會執行區分文化特性和區分大小寫的比較;您無法使用此方法來執行不區分文化特性的比較。 為了清楚瞭解程式代碼,建議您改用 String.Compare 方法。
對於區分文化特性的作業,請將 StringComparison.CurrentCulture 或 StringComparison.CurrentCultureIgnoreCase 列舉值指定為 comparisonType
參數。 如果您想要使用目前文化特性以外的指定文化特性來執行區分文化特性的比較,請將代表該文化特性的 CultureInfo 物件指定為 culture
參數。
String.Compare 方法所支援的文化不敏感字串比較可以是語言性的(根據不變文化的排序慣例)或非語言性的(根據字串中字元的序數值)。 大部分不區分文化特性的字串比較都是非語言的。 針對這些比較,請將 StringComparison.Ordinal 或 StringComparison.OrdinalIgnoreCase 列舉值指定為 comparisonType
參數。 例如,如果安全性決策(例如使用者名稱或密碼比較)是以字串比較的結果為基礎,則作業應該不區分文化特性和非語言,以確保結果不會受到特定文化特性或語言慣例的影響。
如果您想要以一致的方式處理來自多個文化特性的語言相關字串,請使用不區分文化特性的語言字串比較。 例如,如果您的應用程式在清單框中顯示使用多個字元集的字組,則不論目前的文化特性為何,您可能想要以相同順序顯示單字。 對於不區分文化特性的語言比較,.NET 會定義以英文語言慣例為基礎的不變異文化特性。 若要執行不區分文化特性的語言比較,請將 StringComparison.InvariantCulture 或 StringComparison.InvariantCultureIgnoreCase 指定為 comparisonType
參數。
下列範例會執行兩個不區分文化特性的非語言字串比較。 第一個會區分大小寫,但第二個則不會。
using System;
public class CompareSample
{
public static void Main()
{
string string1 = "file";
string string2 = "FILE";
int compareResult = 0;
compareResult = String.Compare(string1, string2,
StringComparison.Ordinal);
Console.WriteLine($"{StringComparison.Ordinal} comparison of '{string1}' and '{string2}': {compareResult}");
compareResult = String.Compare(string1, string2,
StringComparison.OrdinalIgnoreCase);
Console.WriteLine($"{StringComparison.OrdinalIgnoreCase} comparison of '{string1}' and '{string2}': {compareResult}");
}
}
// The example displays the following output:
// Ordinal comparison of 'file' and 'FILE': 32
// OrdinalIgnoreCase comparison of 'file' and 'FILE': 0
Public Class CompareSample
Public Shared Sub Main()
Dim string1 As String = "file"
Dim string2 As String = "FILE"
Dim compareResult As Integer
compareResult = String.Compare(string1, string2, _
StringComparison.Ordinal)
Console.WriteLine("{0} comparison of '{1}' and '{2}': {3}",
StringComparison.Ordinal, string1, string2,
compareResult)
compareResult = String.Compare(string1, string2,
StringComparison.OrdinalIgnoreCase)
Console.WriteLine("{0} comparison of '{1}' and '{2}': {3}",
StringComparison.OrdinalIgnoreCase, string1, string2,
compareResult)
End Sub
End Class
' The example displays the following output:
' Ordinal comparison of 'file' and 'FILE': 32
' OrdinalIgnoreCase comparison of 'file' and 'FILE': 0
您可以下載 排序權數數據表、一組文本檔,其中包含 Windows作系統排序和比較作業中使用的字元權數資訊,以及 預設 Unicode 定序元素數據表、Linux 和 macOS 的排序權數數據表。