mtch.post_match â str
Instance Public methods
Returns the portion of the original string after the current match.
Equivalent to the special variable $'
.
1 2 | m = /(.)(.)(\d+)(\d)/.match( "THX1138: The Movie" ) m.post_match #=> ": The Movie" |
Please login to continue.