- numberOfMatchesInString:options:range:
- enumerateMatchesInString:options:range:usingBlock:
- firstMatchInString:options:range:
- rangeOfFirstMatchInString:options:range:
Availability 有効性
Technology
- (NSArray
<NSTextCheckingResult
*> *)matchesInString:(NSString
*)string
options:(NSMatchingOptions
)options
range:(NSRange
)range;
string
The string to search. 捜す文字列。
options
オプション
The matching options to use. See NSMatching
for possible values.
使用するマッチング・オプション。可能な値のためにNSMatching
を見てください。
range
The range of the string to search. 捜す文字列の範囲。
An array of NSText
objects. Each result gives the overall matched range via its range
property, and the range of each individual capture group via its range
method. The range {NSNot
, 0} is returned if one of the capture groups did not participate in this particular match.
NSText
オブジェクトの配列。それぞれの結果は、そのrange
プロパティ経由で全体的なマッチされた範囲を、そしてそのrange
メソッドによって捕獲グループそれぞれの範囲を提供します。捕獲グループの1つがこの特定のマッチに関与しないならば、範囲 {NSNot
, 0} が返されます。
This is a convenience method that calls enumerate
passing the appropriate string, options, and range.
これは、適切な文字列、オプション、そして範囲を渡して、enumerate
を呼ぶ、便宜メソッドです。
- numberOfMatchesInString:options:range:
- enumerateMatchesInString:options:range:usingBlock:
- firstMatchInString:options:range:
- rangeOfFirstMatchInString:options:range: