"Example_Value"} example["Example_Key"] 解释器会返回"Example_Value"-6ren">
gpt4 book ai didi

ruby - 有没有办法从值中访问键?

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

如果我输入如下内容:

example = {"Example_Key" => "Example_Value"}
example["Example_Key"]

解释器会返回"Example_Value",也就是值。有没有办法输入值并获取 key ?

最佳答案

是的,有:

example = {"Example_Key" => "Example_Value"}
example.key "Example_Value" # => "Example_Key"

查看文档 Hash#key

Returns the key of an occurrence of a given value. If the value is not found, returns nil.

关于ruby - 有没有办法从值中访问键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24720597/

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