1, ["cat"]=>2, ["tree"]=>1, ["dog"]=>1} 但我想要这个哈希: {"word"=>1, "cat"=>2, "tree"=>1-6ren">
gpt4 book ai didi

ruby - 将哈希数组键更改为字符串

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:32:20 25 4
gpt4 key购买 nike

我有这个哈希:

{["word"]=>1, ["cat"]=>2, ["tree"]=>1, ["dog"]=>1}

但我想要这个哈希:

{"word"=>1, "cat"=>2, "tree"=>1, "dog"=>1}

我已经对 each_keyjoin 进行了几次尝试,但似乎没有任何效果。

我该怎么做?

最佳答案

另一个:

hash = {["word"]=>1, ["cat"]=>2, ["tree"]=>1, ["dog"]=>1}

hash.map { |(k), v| [k, v] }.to_h
#=> {"word"=>1, "cat"=>2, "tree"=>1, "dog"=>1}

关于ruby - 将哈希数组键更改为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25667718/

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