Remove last vowel from words in a sentence
Write a function that removes the last vowel from every word in a sentence. You can split words by spaces. Vowels are a, e, i, o, and u.
Examples:
(remove-last-vowels "Hi, there!") ;=> "H, ther!"
(remove-last-vowels "This is not a test.") ;=> "Ths s nt tst."
(remove-last-vowels "Hippopotamus") ;=> "Hippopotams"
Thanks to this site for the idea. This is kind of a silly one, but I thought it would be good for testing our Clojure skills.
You can leave comments on these submissions in the gist itself. Please leave comments! You can also hit the Subscribe button to keep abreast of the comments. We’re all here to learn.
correction on Steve Miner:
vowel?
should also include the capital vowel characters in the case expression.