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

In Ruby, given an array in one of the following forms...

[apple, 1, banana, 2]
[[apple, 1], [banana, 2]]

...what is the best way to convert this into a hash in the form of...

{apple => 1, banana => 2}
share|improve this question

8 Answers

up vote 88 down vote accepted

Simply use Hash[*array_variable.flatten]

For example:

a1 = ['apple', 1, 'banana', 2]
h1 = Hash[*a1.flatten]
puts "h1: #{h1.inspect}"

a2 = [['apple', 1], ['banana', 2]]
h2 = Hash[*a2.flatten]
puts "h2: #{h2.inspect}"
share|improve this answer
3  
Oh, the eloquence! This is why I love Ruby – Yasky Feb 25 '12 at 6:10
2  
WARNING: answers using flatten will cause problems if you want Array keys or values. – Stew Mar 5 '12 at 18:01
I've posted an alternative solution below that will avoid problems with Array keys or values. – Stew Mar 5 '12 at 18:18
2  
It's better to not try and do a catch-all solution for this. If your keys and values are paired as in [[key1,value1],[key2,value2]] then just pass it to Hash[] without fattening. Hash[a2] == Hash[*a2.flatten]. If the array is already flattened as in, [key1, value1, key2, value2] then just prefix the var with *, Hash[*a1] – Cluster Jul 1 '12 at 23:18
How! How! How!... How did you come up with this! Pure beauty I say. – Arindam Jan 28 at 16:30
show 2 more comments

Warning! Solutions using flatten will not preserve Array keys or values!

Building on @John Topley's popular answer, let's try:

a3 = [ ['apple', 1], ['banana', 2], [['orange','seedless'], 3] ]
h3 = Hash[*a3.flatten]

This throws an error:

ArgumentError: odd number of arguments for Hash
        from (irb):10:in `[]'
        from (irb):10

The constructor was expecting an Array of even length (e.g. ['k1','v1,'k2','v2']). What's worse is that a different Array which flattened to an even length would just silently give us a Hash with incorrect values.

If you want to use Array keys or values, you can use map:

h3 = Hash[a3.map {|key, value| [key, value]}]
puts "h3: #{h3.inspect}"

This preserves the Array key:

h3: {["orange", "seedless"]=>3, "apple"=>1, "banana"=>2}
share|improve this answer
5  
This is the same as Hash[a3], since a3 == a3.map{|k,v| [k,v]} is true, it's actually the equivalent to a3.dup. – Cluster Jul 1 '12 at 23:08

This but here is one way of converting an Array to a Hash:

 require "enumerator"

 class Array
   def to_h
     Hash[*enum_with_index.to_a.flatten]
   end
 end

%w{a b c d}.to_h  # =>  {"a"=>0, "b"=>1, "c"=>2, "d"=>3}

Another sample:

["foo", "bar", "foo1", "bar1","foo2", "bar2"]   convert to
{"foo"=>"bar", "foo1"=>"bar1","foo2"=>"bar2"}

def array_to_hash(array)
  count = 0
  hash = Hash.new
  (array.length / 2).times do
    hash[array[count]] = array[count+1]
    count += 2
  end
  return hash
end
share|improve this answer
I was just needing this. Why it's hidden down at zero points in a pretty popular question is unknown... Anyway, the non-monkey patched version is just hash = Hash[*a.enum_with_index.to_a.flatten] – Yar Aug 3 '09 at 9:34
1  
In Ruby 1.9 enum_with_index is gone, but you can use each_with_index for this purpose. – gtd Feb 19 at 17:12

Edit: Saw the responses posted while I was writing, Hash[a.flatten] seems the way to go. Must have missed that bit in the documentation when I was thinking through the response. Thought the solutions that I've written can be used as alternatives if required.

The second form is simpler:

a = [[:apple, 1], [:banana, 2]]
h = a.inject({}) { |r, i| r[i.first] = i.last; r }

a = array, h = hash, r = return-value hash (the one we accumulate in), i = item in the array

The neatest way that I can think of doing the first form is something like this:

a = [:apple, 1, :banana, 2]
h = {}
a.each_slice(2) { |i| h[i.first] = i.last }
share|improve this answer

Appending to the answer but using anonymous arrays and annotating: e.g.,

Hash[*("a,b,c,d".split(',').zip([1,2,3,4]).flatten)]

Taking that answer apart, starting from the inside:

"a,b,c,d" is actually a string split on commas into an array zip that together with the following array [1,2,3,4] is an actual array

The intermediate result is [[a,1],[b,2],[c,3],[d,4]]

flatten then transforms that to ["a",1,"b",2,"c",3,"d",4] and then *["a",1,"b",2,"c",3,"d",4] unrolls that into "a",1,"b",2,"c",3,"d",4 which we can use as the arguments to the Hash[] method; i.e.,

Hash[*("a,b,c,d".split(',').zip([1,2,3,4]).flatten)]

which yields {"a"=>1, "b"=>2, "c"=>3, "d"=>4}

share|improve this answer

Not sure if it's the best way, but this works:

a = ["apple", 1, "banana", 2]
m1 = {}
for x in (a.length / 2).times:
  m1[a[x*2]] = a[x*2 + 1]
end

b = [["apple", 1], ["banana", 2]]
m2 = {}
for x,y in b:
  m2[x] = y
end
share|improve this answer

If the numeric values are seq indexes, then we could have simpler ways... Here's my code submission, My Ruby is a bit rusty

   input = ["cat", 1, "dog", 2, "wombat", 3]
   hash = Hash.new
   input.each_with_index {|item, index|
     if (index%2 == 0) hash[item] = input[index+1]
   }
   hash   #=> {"cat"=>1, "wombat"=>3, "dog"=>2}
share|improve this answer

You can also simply convert a 2D array into hash using:

1.9.3p362 :005 > a= [[1,2],[3,4]]

 => [[1, 2], [3, 4]]

1.9.3p362 :006 > h = Hash[a]

 => {1=>2, 3=>4} 
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.