Skip to content

Instantly share code, notes, and snippets.

@lusis
Created June 10, 2010 14:24
Show Gist options
  • Save lusis/433064 to your computer and use it in GitHub Desktop.
Save lusis/433064 to your computer and use it in GitHub Desktop.
class String
def rsplit(delim,count)
self.reverse.split(delim, count).map(&:reverse).reverse
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment