Instance Method
インスタンスメソッド
localizedCompare:
Compares the string and a given string using a localized comparison.
ローカライズされた比較を使って、文字列をある与えられた文字列と比較します。
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では変わるかもしれません。
Return Value
戻り値
Returns an NSComparisonResult
value that indicates the lexical ordering. NSOrderedAscending
the receiver precedes aString
in lexical ordering, NSOrderedSame
the receiver and aString
are equivalent in lexical value, and NSOrderedDescending
if the receiver follows aString
.
NSComparisonResult
値を返します、それは語彙的順序を指し示します。NSOrderedAscending
レシーバはaString
に語彙的順序において先行します、NSOrderedSame
レシーバとaString
は語彙的値において同等です、そしてNSOrderedDescending
もしレシーバがaString
に続くならば。
Discussion
議論
This method uses the current locale.
このメソッドは、現在のロケールを使います。
See Also
参照
Identifying and Comparing Strings
文字列を識別および比較する
- localizedCaseInsensitiveCompare:
Compares the string with a given string using a case-insensitive, localized, comparison.
この文字列をある与えられた文字列と比較します、ケースを考慮しない、ローカライズされた比較を使います。
- compare:options:
Compares the string with the specified string using the given options.
文字列をこの指定された文字列とこの与えられたオプションを使って比較します。
- compare:options:range:locale:
Compares the string using the specified options and returns the lexical ordering for the range.
文字列を指定されたオプションを使って比較して、範囲の語彙的順序を返します。
- hasPrefix:
Returns a Boolean value that indicates whether a given string matches the beginning characters of the receiver.
あるブール値を返します、与えられた文字列がレシーバの始まりの文字に合致するかどうかを指し示します。
- hasSuffix:
Returns a Boolean value that indicates whether a given string matches the ending characters of the receiver.
あるブール値を返します、与えられた文字列がレシーバの終わりの文字に合致するかどうかを指し示します。
- isEqualToString:
Returns a Boolean value that indicates whether a given string is equal to the receiver using a literal Unicode-based comparison.
あるブール値を返します、与えられた文字列がレシーバと等しいかどうかを指し示します、リテラルユニコード基盤の比較を使います。
hash
An unsigned integer that can be used as a hash table address.
ハッシュテーブルアドレスとして使われることができる符号なし整数。
NSStringCompareOptions
These values represent the options available to many of the string classes’ search and comparison methods.
これらの値は、文字列クラスのもつ検索および比較メソッドの多くで利用可能なオプションを表します。