Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's a smart way of using ActiveSupport or perhaps regular built in Ruby functionality to take two arrays and merge them into a hash where each element in an array matches the element in a parallel array? imagine two arrays:

names = ["Danny", "Johnny"]
ages = ["25", "32"]

The end result should be a hash that looks like:

{"Danny" => "25", "Johnny" => "32"}
share|improve this question

1 Answer

up vote 3 down vote accepted

If you're using ruby 1.8.7 or above:

Hash[names.zip ages]

or for 1.8.6:

Hash[*names.zip(ages).flatten]
share|improve this answer
1  
using .flatten will cause problems in the case where either array also contains other arrays. In this specific situation it'll be fine, but important to keep in mind – Gareth Apr 18 '10 at 17:48
Good point, replace .flatten with .sum if there is any chance of the arrays having other arrays in them. – mckeed Apr 18 '10 at 18:43

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.