Obtain Key from a Hash of Arrays using array value

来源:互联网 发布:龙江网络投诉电话多少 编辑:程序博客网 时间:2024/05/16 06:53

I have a Hash as follows:

{'a' => [title: 'ab', path: 'cd'], 'b' => [title: 'ef', path: 'gh']}

Now lets say I have one title and wish to get the key from it...

i.e. if I have 'ef' and want 'b'


h = {'a' => [title: 'ab', path: 'cd'], 'b' => [title: 'ef', path: 'gh']}h.select { |_,v| v[0][:title] == 'ef' }.keys
h = {'a' => [title: 'ab', path: 'cd'], 'b' => [title: 'ef', path: 'gh']}  #=> {"a"=>[{:title=>"ab", :path=>"cd"}], "b"=>[{:title=>"ef", :path=>"gh"}]}h.each_with_object({}) { |(k,v),g| g[v.first[:title]] = k }['ef']   #=> "b"

or

h.each_with_object({}) { |(k,v),g| g[k] = v.first[:title] }.invert['ef']  #=> "b"

0 0
原创粉丝点击