如何从数组中的哈希值中获取值

时间:2016-09-30 06:30:39

标签: arrays ruby hash jruby

我有一个由多个具有相同结构的哈希组成的数组。我还有另一个充满字符串的数组:

prop_array = [
                {:name=>"item1", :owner=>"block1",:ID=>"11"},
                {:name=>"item2", :owner=>"block2",:ID=>"22"},
                {:name=>"item3", :owner=>"block3",:ID=>"33"},
                {:name=>"item4", :owner=>"block4",:ID=>"44"}
            ]


owner_array = ["block1","block2","block3","block4"]

我想检查哈希中的任何:owner值是否与owner_array中的任何字符串匹配,并将变量:partID设置为:ID值:

我尝试了以下但是它不起作用:

owner_array.each do |owner|
    prop_array.each do |prop|
        prop.each do |key, value|
            if key[:owner] == owner.to_s
                puts "YES"
                partID = key[:ID]
                puts partID
            end
        end
    end
end

如果运行正确,则应返回partID

=> "11"
=> "22"
=> "33"
=> "44"

1 个答案:

答案 0 :(得分:0)

  

我想检查哈希中的任何':owner'值是否匹配   使用owner_array中的任何字符串

prop_array.select {|hash| owner_array.include?(hash[:owner]) }
#=> [{:name=>"item1", :owner=>"block1", :ID=>"11"}, {:name=>"item2", :owner=>"block2", :ID=>"22"}, {:name=>"item3", :owner=>"block3", :ID=>"33"}, {:name=>"item4", :owner=>"block4", :ID=>"44"}]
  

将变量“:partID”设置为':ID'值

 partID = prop_array.select { |hash| owner_array.include?(hash[:owner]) }
                    .map    { |hash| hash[:ID] }
 #=> ["11", "22", "33", "44"]

修改

由于您希望在循环中分配这些值,请使用:

partID = prop_array.select { |hash| owner_array.include?(hash[:owner]) }.each do |hash|
  # assignment happens here one by one
  cell_id = hash[:ID] # or whatever logic you have to assign this ID to cell
end
相关问题