Skip to content

Instantly share code, notes, and snippets.

@ivanbrennan
Created September 30, 2013 22:07
Show Gist options
  • Save ivanbrennan/6771025 to your computer and use it in GitHub Desktop.
Save ivanbrennan/6771025 to your computer and use it in GitHub Desktop.
Reverse each word
def reverse_each_word(sentence)
words = sentence.split
back_words = words.collect { |word| word.reverse }
back_words.join(" ")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment