Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an array of hashes, @fathers.

a_father = { "father" => "Bob", "age" =>  40 }
@fathers << a_father
a_father = { "father" => "David", "age" =>  32 }
@fathers << a_father
a_father = { "father" => "Batman", "age" =>  50 }
@fathers << a_father 

How can I search this array and return an array of hashes for which a block returns true?

For example:

@fathers.some_method("age" > 35) #=> array containing the hashes of bob and batman

Thanks.

share|improve this question

2 Answers

up vote 80 down vote accepted

You're looking for Enumerable#select:

@fathers.select {|f| f["age"] > 35 }
# => [{"age"=>40, "father"=>"Bob"}, {"age"=>50, "father"=>"Batman"}]
share|improve this answer
2  
Oh! You were the first one! Deleting my answer and +1. – Milan Novota Feb 11 '10 at 14:13
Excellent. Many thanks! – doctororange Feb 11 '10 at 14:15

this will return first match

@fathers.detect {|f| f["age"] > 35 }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.