- numberOfMatchesInString:options:range:
Returns the number of matches of the regular expression within the specified range of the string.
この文字列の指定の範囲内における正規表現のマッチ数を返します。
- enumerateMatchesInString:options:range:usingBlock:
Enumerates the string allowing the Block to handle each regular expression match.
文字列を、「ブロック」に各正規表現マッチを取り扱わせて、列挙します。
- matchesInString:options:range:
Returns an array containing all the matches of the regular expression in the string.
文字列中のその正規表現の全てのマッチを含んでいる配列を返します。
- firstMatchInString:options:range:
Returns the first match of the regular expression within the specified range of the string.
この文字列の指定の範囲内における正規表現の最初のマッチを返します。