Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-06-18から1日間の記事一覧

Ruby | MatchData | to_s

概要 MatchData#to_s -> [String] 詳細 マッチした文字列全体を返却 サンプルコード require 'tbpgr_utils' "-----hogehigehage@@@@@" =~ /(h\wge)(h\wge)(h\wge)/ bulk_puts_eval binding, <<-EOS $~ $~.to_s EOS __END__ 下記はTbpgrUtils gemの機能 bulk_…