Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Symbolクラス > match
match(other) -> Integer | nil
[permalink][rdoc]正規表現 other とのマッチを行います。
(self.to_s.match(other) と同じです。)
p :foo.match(/foo/) # => 0 p :foobar.match(/bar/) # => 3 p :foo.match(/bar/) # => nil
[SEE_ALSO] String#match