Skip to content

Instantly share code, notes, and snippets.

@marcusshepp
Last active June 13, 2016 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcusshepp/c9ddc29cf274bfd42954337db201b5be to your computer and use it in GitHub Desktop.
Save marcusshepp/c9ddc29cf274bfd42954337db201b5be to your computer and use it in GitHub Desktop.
rindex
# returns last index of occurance
s = "marcus shepherd"
x = s.rindex(" ")
# => 6
s[0..x-1]
# => "marcus"
s[x+1..s.length]
# => "shepherd"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment