"John", "Loc" => "US", "fname" => "John-6ren">
gpt4 book ai didi

ruby hash 检查值是否存在

转载 作者:行者123 更新时间:2023-12-02 15:31:16 25 4
gpt4 key购买 nike

一定是个简单的问题..但我似乎找不到答案。我正在尝试检查哈希中特定键的值是否存在。

hash = {{"name" => "John", "Loc" => "US", "fname" => "John Doe"},
{"name" => "Eve", "Loc" => "UK", "fname" => "John Eve"}}

目前我正在遍历哈希,以检查 if h["name"] = "John"...

我正在寻找 .include.has_value? 类型的方法是否可用。我阅读了有关哈希的文档和手头上的一本书,但找不到它。

我认为像 if hash["name"].has_value?("John") 这样的东西比遍历哈希最有用。在此先感谢您的帮助!

最佳答案

首先,我们的散列不是有效的散列。我想你想要一个像这样的哈希数组

array = [
{ "name" => "John", "Loc" => "US", "fname" => "John Doe" },
{ "name" => "Eve", "Loc" => "UK", "fname" => "John Eve" }
]

然后你可以这样做:

array.select { |hash| hash['name'] == 'John' }
# => returns [{"name" => "John", "Loc" => "US", "fname" => "John Doe"}]

array.any? { |hash| hash['name'] == 'John' }
# => true

关于ruby hash 检查值是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25706697/

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