What is the best way to convert an array to a hash in Ruby - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T23:31:58Z http://stackoverflow.com/feeds/question/39567 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/39567/what-is-the-best-way-to-convert-an-array-to-a-hash-in-ruby 6 What is the best way to convert an array to a hash in Ruby Nathan Fritz 2008-09-02T13:53:55Z 2008-09-03T06:39:48Z <p>In Ruby, given an array in one of the following forms...</p> <pre><code>[apple, 1, banana, 2] [[apple, 1], [banana, 2]] </code></pre> <p>...what is the best way to convert this into a hash in the form of...</p> <pre><code>{apple =&gt; 1, banana =&gt; 2} </code></pre> http://stackoverflow.com/questions/39567/what-is-the-best-way-to-convert-an-array-to-a-hash-in-ruby/39612#39612 1 Answer by Espo for What is the best way to convert an array to a hash in Ruby Espo 2008-09-02T14:10:55Z 2008-09-02T14:10:55Z <p>This but here is one way of converting an Array to a Hash:</p> <pre><code> require "enumerator" class Array def to_h Hash[*enum_with_index.to_a.flatten] end end %w{a b c d}.to_h # =&gt; {"a"=&gt;0, "b"=&gt;1, "c"=&gt;2, "d"=&gt;3} </code></pre> <p>Another sample:</p> <pre><code>["foo", "bar", "foo1", "bar1","foo2", "bar2"] convert to {"foo"=&gt;"bar", "foo1"=&gt;"bar1","foo2"=&gt;"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 </code></pre> http://stackoverflow.com/questions/39567/what-is-the-best-way-to-convert-an-array-to-a-hash-in-ruby/39621#39621 11 Answer by John Topley for What is the best way to convert an array to a hash in Ruby John Topley 2008-09-02T14:14:08Z 2008-09-03T06:39:48Z <p>Simply use <code>Hash[*array_variable.flatten]</code></p> <p>For example:</p> <pre><code>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}" </code></pre> http://stackoverflow.com/questions/39567/what-is-the-best-way-to-convert-an-array-to-a-hash-in-ruby/39625#39625 0 Answer by Daemin for What is the best way to convert an array to a hash in Ruby Daemin 2008-09-02T14:16:01Z 2008-09-02T14:23:15Z <blockquote> <p>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.</p> </blockquote> <p>The second form is simpler:</p> <pre><code>a = [[:apple, 1], [:banana, 2]] h = a.inject({}) { |r, i| r[i.first] = i.last; r } </code></pre> <p>a = array, h = hash, r = return-value hash (the one we accumulate in), i = item in the array</p> <p>The neatest way that I can think of doing the first form is something like this:</p> <pre><code>a = [:apple, 1, :banana, 2] h = {} a.each_slice(2) { |i| h[i.first] = i.last } </code></pre> http://stackoverflow.com/questions/39567/what-is-the-best-way-to-convert-an-array-to-a-hash-in-ruby/39629#39629 0 Answer by Anders Sandvig for What is the best way to convert an array to a hash in Ruby Anders Sandvig 2008-09-02T14:16:35Z 2008-09-02T14:16:35Z <p>Not sure if it's the best way, but this works:</p> <pre><code>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 </code></pre> http://stackoverflow.com/questions/39567/what-is-the-best-way-to-convert-an-array-to-a-hash-in-ruby/39641#39641 0 Answer by Gishu for What is the best way to convert an array to a hash in Ruby Gishu 2008-09-02T14:20:27Z 2008-09-02T14:20:27Z <p>If the numeric values are seq indexes, then we could have simpler ways... Here's my code submission, My Ruby is a bit rusty</p> <pre><code> 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 #=&gt; {"cat"=&gt;1, "wombat"=&gt;3, "dog"=&gt;2} </code></pre>