Instance Method インスタンスメソッド

caseInsensitiveCompare(_:)

Returns the result of invoking compare(_:options:) with NSCaseInsensitiveSearch as the only option. compare(_:options:)を発動する結果を返します、NSCaseInsensitiveSearchを唯一の引数として使います。

Declaration 宣言

func caseInsensitiveCompare(_ string: String) -> ComparisonResult

Parameters パラメータ

aString

The string with which to compare the receiver. レシーバと比較する文字列。

Return Value 戻り値

Returns an ComparisonResult value that indicates the lexical ordering. ComparisonResult.orderedAscending the receiver precedes aString in lexical ordering, ComparisonResult.orderedSame the receiver and aString are equivalent in lexical value, and ComparisonResult.orderedDescending if the receiver follows aString. ComparisonResult値を返します、それは語彙的順序を指し示します。ComparisonResult.orderedAscendingはレシーバが語彙的順序においてaStringを越える、ComparisonResult.orderedSameはレシーバとaStringが文字列順序において同等、そしてComparisonResult.orderedDescendingはレシーバがaStringの後に続く場合。

Discussion 議論

This method is the equivalent of invoking compare(_:options:) with caseInsensitive as the only option. このメソッドは、compare(_:options:)を、caseInsensitiveをただ1つのオプションとして発動することと等しいです。

See Also 参照

Identifying and Comparing Strings 文字列を識別および比較する