Skip to content

Instantly share code, notes, and snippets.

@deatheragetr
Last active December 18, 2015 14:59
Show Gist options
  • Save deatheragetr/5800826 to your computer and use it in GitHub Desktop.
Save deatheragetr/5800826 to your computer and use it in GitHub Desktop.
reverse word
def reverse_each_word(string)
string.split.collect {|word| word.reverse }.join(' ')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment