2013-06-13 後方参照 Ruby 後方参照は$&を使う # -*- coding: utf-8 -*- hoge = '0123-4' p /(-\d)/ =~ hoge print($& + "\n") マッチした文字列を取得($&) - 後方参照 - Ruby正規表現の使い方