Instance Method
インスタンスメソッド
firstMatch(in:options:range:)
Returns the first match of the regular expression within the specified range of the string.
この文字列の指定の範囲内における正規表現の最初のマッチを返します。
Return Value
戻り値
An NSTextCheckingResult
object. This result gives the overall matched range via its range
property, and the range of each individual capture group via its range(at:)
method. The range {NSNotFound
, 0} is returned if one of the capture groups did not participate in this particular match.
NSTextCheckingResult
オブジェクト。この結果は、そのrange
プロパティ経由で全体的なマッチされた範囲を、そしてそのrange(at:)
メソッドによって捕獲グループそれぞれの範囲を提供します。捕獲グループの1つがこの特定のマッチに関与しないならば、範囲 {NSNotFound
, 0} が返されます。
See Also
参照
Searching Strings Using Regular Expressions
正規表現を使った文字列検索