match(other) -> MatchData | nil
[permalink][rdoc]正規表現 other とのマッチを行います。
(self.to_s.match(other) と同じです。)
p :foo.match(/foo/) # => #<MatchData "foo"> p :foobar.match(/bar/) # => #<MatchData "bar"> p :foo.match(/bar/) # => nil
[SEE_ALSO] String#match
[SEE_ALSO] Symbol#match?