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