Tbpgr Blog

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

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

Ruby | MatchData | post_match

概要 MatchData#post_match -> String 詳細 マッチした部分より後ろの文字列を返却 $' と同じ。 サンプルコード require 'tbpgr_utils' "hogehigehage" =~ /(h\wge)(h\wge)(h\wge)/ (1..3).each do |i| bulk_puts_eval binding, <<-EOS $~.begin(i) $~.end(i…