instance method MatchData#to_s

to_s -> String[permalink][rdoc][edit]

マッチした文字列全体を返します。



/bar/ =~ "foobarbaz"
p $~            # => #<MatchData:0x401b1be4>
p $~.to_s       # => "bar"