将两个数组合并为哈希

问题描述 投票:3回答:5

我正在尝试将两个数组合并为一个哈希。

@sample_array = ["one", "Two", "Three"]
@timesheet_id_array = ["96", "97", "98"]

我想将结果输出到称为@hash_array的哈希中。是否有一种简单的方法将两者合并在一个代码块中,以便在调用put时看起来像在控制台中一样]

{"one" => "96", "Two" => "97", "Three" => "98"}

我认为这可以用一两行代码来完成。

ruby arrays hash
5个回答
7
投票
@hash_array = {}
@sample_array.each_with_index do |value, index|
  @hash_array[value] = @timesheet_id_array[index]
end

38
投票

尝试一下

keys = [1, 2, 3]
values = ['a', 'b', 'c']
Hash[keys.zip(values)]

感谢


1
投票

博士Nic建议在http://drnicwilliams.com/2006/10/03/zip-vs-transpose/

中很好地解释2个选项

0
投票
@hash_array = {}
0.upto(@sample_array.length - 1) do |index|
  @hash_array[@sample_array[index]] = @timesheet_id_array[index]
end
puts @hash_array.inspect

0
投票

看起来最美的Imho:

[:a,:b,:c].zip([1,2,3]).to_h

# {:a=>1, :b=>2, :c=>3}
© www.soinside.com 2019 - 2024. All rights reserved.