vote up 3 vote down star

I have two arrays like this:

keys = ['a', 'b', 'c']
values = [1, 2, 3]

Is there a simple way in Ruby to convert those arrays into the following hash?

{ 'a' => 1, 'b' => 2, 'c' => 3 }

Here is my way of doing it, but I feel like there should be a built-in method to easily do this.

def arrays2hash(keys, values)
  hash = {}
  0.upto(keys.length - 1) do |i|
      hash[keys[i]] = values[i]
  end
  hash
end
flag

3 Answers

vote up 10 vote down check

The following works in 1.8.7:

keys = ["a", "b", "c"]
values = [1, 2, 3]
zipped = keys.zip(values)
=> [["a", 1], ["b", 2], ["c", 3]]
Hash[zipped]
=> {"a"=>1, "b"=>2, "c"=>3}

This appears not to work in older versions of Ruby (1.8.6). The following should be backwards compatible:

Hash[*keys.zip(values).flatten]
link|flag
So Hash[keys.zip(values)] then? – Kyle Cronin Apr 11 at 20:55
Thanks, the zip method is probably what I need... but the "Hash[zipped]" part is giving me an error in Ruby 1.8.6: "ArgumentError: odd number of arguments for Hash". And I just can't figure out another simple way of changing 'zipped' into a hash... – jeremy Ruten Apr 11 at 21:02
Hmm. I'm using 1.8.7. It looks like this might have been introduced in 1.8.7. I'll edit the answer for a backwards-compatible version. – Brian Campbell Apr 11 at 21:26
That works, thank you! – jeremy Ruten Apr 11 at 21:47
This is great. Shame that you have to * and flatten the zip in older versions of Ruby though :( – allyourcode Apr 20 at 3:02
vote up 2 vote down

Another way is to use each_with_index:

hash = {}
keys.each_with_index { |key, index| hash[key] = values[index] }

hash # => {"a"=>1, "b"=>2, "c"=>3}
link|flag

Your Answer

Get an OpenID
or

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