Advertisement
saasbook

starts_with_vowel.rb

Jan 10th, 2012
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.17 KB | None | 0 0
  1. class String
  2.   def starts_with_vowel?
  3.     self =~ /^[aeiou]/i
  4.   end
  5. end
  6.  
  7. words = IO.read("file").
  8.   split(/\W+/).
  9.   select(&:starts_with_vowel).
  10.   map(&:downcase).
  11.   uniq.
  12.   sort
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement