func enumerateMatches (in: String, options: NSRegularExpression.MatchingOptions, range: NSRange, using: (NSTextCheckingResult?, NSRegularExpression.MatchingFlags, UnsafeMutablePointer<ObjCBool>) -> Void)
Enumerates the string allowing the Block to handle each regular expression match.
文字列を、「ブロック」に各正規表現マッチを取り扱わせて、列挙します。
func matches(in: String, options: NSRegularExpression.MatchingOptions, range: NSRange) -> [NSTextCheckingResult]
Returns an array containing all the matches of the regular expression in the string.
文字列中のその正規表現の全てのマッチを含んでいる配列を返します。
func firstMatch (in: String, options: NSRegularExpression.MatchingOptions, range: NSRange) -> NSTextCheckingResult?
Returns the first match of the regular expression within the specified range of the string.
この文字列の指定の範囲内における正規表現の最初のマッチを返します。
func rangeOfFirstMatch (in: String, options: NSRegularExpression.MatchingOptions, range: NSRange) -> NSRange
Returns the range of the first match of the regular expression within the specified range of the string.
この文字列の指定の範囲内における正規表現の最初のマッチの範囲を返します。