NSCaseInsensitiveSearch
A case-insensitive search.
ケースを考慮しない比較。
NSLiteralSearch
Exact character-by-character equivalence.
文字ごとの同等性を要求します。
NSBackwardsSearch
Search from end of source string.
ソース文字列の終わりから検索します。
NSAnchoredSearch
Search is limited to start (or end, if
NSBackwardsSearch
) of source string.
検索はソース文字列の最初の部分(または終わりの部分、もしNSBackwardsSearch
ならば)に制限されます。
NSNumericSearch
Numbers within strings are compared using numeric value, that is,
Name2.txt
< Name7.txt
< Name25.txt
.
文字列内の数字は、数値を使って比較されます、すなわち、Name2.txt
< Name7.txt
< Name25.txt
。
NSDiacriticInsensitiveSearch
Search ignores diacritic marks.
検索は区分初音符を無視します。
NSWidthInsensitiveSearch
Search ignores width differences in characters that have full-width and half-width forms, as occurs in East Asian character sets.
検索は、東アジア文字集合において現れるような、全角および半角形式を持つ文字における幅の違いを無視します。
NSForcedOrderingSearch
Comparisons are forced to return either
NSOrderedAscending
or NSOrderedDescending
if the strings are equivalent but not strictly equal.
比較はNSOrderedAscending
またはNSOrderedDescending
のどちらかを返すことを強制されます、もし文字列が同等であるしかし厳密に等しくないならば。
NSRegularExpressionSearch
The search string is treated as an ICU-compatible regular expression. If set, no other options can apply except
NSCaseInsensitiveSearch
and NSAnchoredSearch
. You can use this option only with the rangeOfString:
… methods and stringByReplacingOccurrencesOfString:withString:options:range:
.
検索文字列は、ICU互換正規表現とみなされます。もし設定されるならば、他のオプションはNSCaseInsensitiveSearch
とNSAnchoredSearch
を除いて適用できません。あなたは、このオプションをrangeOfString:
… メソッドおよびstringByReplacingOccurrencesOfString:withString:options:range:
でのみ使用できます。