gpt4 book ai didi

ruby - 通过键数组设置 ruby​​ 哈希元素值

转载 作者:数据小太阳 更新时间:2023-10-29 08:18:46 24 4
gpt4 key购买 nike

这是我得到的:

hash = {:a => {:b => [{:c => old_val}]}}
keys = [:a, :b, 0, :c]
new_val = 10

散列结构和 key 集可以变化。
我需要得到

hash[:a][:b][0][:c] == new_val

谢谢!

最佳答案

您可以使用 inject遍历你的嵌套结构:

hash = {:a => {:b => [{:c => "foo"}]}}
keys = [:a, :b, 0, :c]

keys.inject(hash) {|structure, key| structure[key]}
# => "foo"

因此,您只需要修改它以对最后一个键进行设置。也许像

last_key = keys.pop
# => :c

nested_hash = keys.inject(hash) {|structure, key| structure[key]}
# => {:c => "foo"}

nested_hash[last_key] = "bar"

hash
# => {:a => {:b => [{:c => "bar"}]}}

关于ruby - 通过键数组设置 ruby​​ 哈希元素值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13856692/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com