instance method MatchData#post_match

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

マッチした部分より後ろの文字列を返します($'と同じ)。



/(bar)(BAZ)?/ =~ "foobarbaz"
p $~.post_match # => "baz"

[SEE_ALSO] MatchData#pre_match