Skip to content

Instantly share code, notes, and snippets.

@havenwood
Created November 12, 2012 02:09
Show Gist options
  • Save havenwood/4057139 to your computer and use it in GitHub Desktop.
Save havenwood/4057139 to your computer and use it in GitHub Desktop.
unprepend
class String
def unprepend this
self.sub(/#{this}$/, '')
end
alias >> unprepend
end
greeting = 'bbqomgwtf'
#=> "bbqomgwtf"
greeting << 'bbq'
#=> "bbqomgwtfbbq"
greeting >> 'bbq'
#=> "bbqomgwtf"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment