Skip to content

Instantly share code, notes, and snippets.

@ahimmelstoss
Created September 30, 2013 22:07
Show Gist options
  • Save ahimmelstoss/6771023 to your computer and use it in GitHub Desktop.
Save ahimmelstoss/6771023 to your computer and use it in GitHub Desktop.
def reverse_each_word(sentence)
sentence_array = sentence.split(" ")
sentence_array.collect {|word| word.reverse}.join(" ")
end
puts reverse_each_word("Hello there, and how are you?")
#=> "olleH ,ereht dna woh era ?uoy"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment