我有一些从 api 返回的数据,我已将其解析为:
[{:a=>value1, :b=>value2, :c=>value3, :d=>value4}, {:a=>value5, :b=>value6, :c=>value7, :d=>value8},{:a=>value9, :b=>value10, :c=>value11, :d=>value12}, ...]
如何使用和的键和值b
创建一个新的哈希数组c
,给定key = b
和key = c
?我想传递密钥并返回值并维护密钥。所以我想结束:
[{:b=>value2, :c=>value3}, {:b=>value6, :c=>value7}, {:b=>value10, :c=>value11}, ...]