Ruby 4.0 リファレンスマニュアル

instance method MatchData#to_s

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

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

/bar/ =~ "foobarbaz"
p $~.to_s       # => "bar"