From: p-hawk Date: 2006-07-06T23:53:11+09:00 Subject: Re: simple noob hash w/ arrays for values question katherine wrote: > my_result_array = [] > my_hash.each_value do |my_array| > my_result_array += my_array.select { |item| item =~ /^[A-Za-z]+$/ } > end > > The code above would go through and put all of the strings that only > consisted of letters into one array. Is something like this what you > were looking for? Yes, this is exactly what I was looking for. Thank you for your help. */me goes off to conquer the world*