What is the best way to convert an array to a hash in Ruby - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T23:31:58Zhttp://stackoverflow.com/feeds/question/39567http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/39567/what-is-the-best-way-to-convert-an-array-to-a-hash-in-ruby6What is the best way to convert an array to a hash in RubyNathan Fritz2008-09-02T13:53:55Z2008-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 => 1, banana => 2}
</code></pre>
http://stackoverflow.com/questions/39567/what-is-the-best-way-to-convert-an-array-to-a-hash-in-ruby/39612#396121Answer by Espo for What is the best way to convert an array to a hash in RubyEspo2008-09-02T14:10:55Z2008-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 # => {"a"=>0, "b"=>1, "c"=>2, "d"=>3}
</code></pre>
<p>Another sample:</p>
<pre><code>["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
</code></pre>
http://stackoverflow.com/questions/39567/what-is-the-best-way-to-convert-an-array-to-a-hash-in-ruby/39621#3962111Answer by John Topley for What is the best way to convert an array to a hash in RubyJohn Topley2008-09-02T14:14:08Z2008-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#396250Answer by Daemin for What is the best way to convert an array to a hash in RubyDaemin2008-09-02T14:16:01Z2008-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#396290Answer by Anders Sandvig for What is the best way to convert an array to a hash in RubyAnders Sandvig2008-09-02T14:16:35Z2008-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#396410Answer by Gishu for What is the best way to convert an array to a hash in RubyGishu2008-09-02T14:20:27Z2008-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 #=> {"cat"=>1, "wombat"=>3, "dog"=>2}
</code></pre>