- numberOfMatchesInString:options:range:
- enumerateMatchesInString:options:range:usingBlock:
- matchesInString:options:range:
- rangeOfFirstMatchInString:options:range:
Availability 有効性
Technology
- (NSTextCheckingResult
*)firstMatchInString:(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 NSText
object. This 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
.
これは、enumerate
を呼ぶ、便宜メソッドです。
- numberOfMatchesInString:options:range:
- enumerateMatchesInString:options:range:usingBlock:
- matchesInString:options:range:
- rangeOfFirstMatchInString:options:range: