我正在尝试将两个数组合并为一个哈希。
@sample_array = ["one", "Two", "Three"]
@timesheet_id_array = ["96", "97", "98"]
我想将结果输出到称为@hash_array的哈希中。是否有一种简单的方法将两者合并在一个代码块中,以便在调用put时看起来像在控制台中一样]
{"one" => "96", "Two" => "97", "Three" => "98"}
我认为这可以用一两行代码来完成。
@hash_array = {}
@sample_array.each_with_index do |value, index|
@hash_array[value] = @timesheet_id_array[index]
end
尝试一下
keys = [1, 2, 3]
values = ['a', 'b', 'c']
Hash[keys.zip(values)]
感谢
博士Nic建议在http://drnicwilliams.com/2006/10/03/zip-vs-transpose/
中很好地解释2个选项@hash_array = {}
0.upto(@sample_array.length - 1) do |index|
@hash_array[@sample_array[index]] = @timesheet_id_array[index]
end
puts @hash_array.inspect
看起来最美的Imho:
[:a,:b,:c].zip([1,2,3]).to_h
# {:a=>1, :b=>2, :c=>3}