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

compare(_:options:)

Compares the string with the specified string using the given options. 文字列をこの指定された文字列とこの与えられたオプションを使って比較します。

Declaration 宣言

func compare(_ string: String, 
     options mask: NSString.CompareOptions = []) -> ComparisonResult

Parameters パラメータ

aString

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

This value must not be nil. If this value is nil, the behavior is undefined and may change in future versions of macOS. この値は、nilではいけません。この値がnilならば、その挙動は未定義です、そして将来のバージョンのmacOSでは変わるかもしれません。

mask

Options for the search—you can combine any of the following using a C bitwise OR operator: caseInsensitive, literal, numeric. See String Programming Guide for details on these options. 検索に対するオプション — あなたは以下のどれでもCビット単位OR演算子を使って結合できます:caseInsensitiveliteralnumericString Programming Guideをこれらのオプションの詳細として見てください。

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 equivalent to invoking compare(_:options:range:) with a given mask as the options and the receiver’s full extent as the range. このメソッドはcompare(_:options:range:)を、オプションとしてある与えられたマスクをそして範囲としてレシーバの持つ完全な長さを使って発動することと等しいです

See Also 参照

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