gpt4 book ai didi

arrays - 从数组中的数组中提取值

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

我有一个这样的数组

records =
[
["a","1"],
["b","2"],
["c","3"]
]

我想提取数字 3,因为我知道我正在搜索“c”的值。

我已经试过了,但是没有成功

search_for = 'c'

test = records.select{ |x| x=search_for}

我找回了整个数组

最佳答案

你正在寻找 Array#assoc:

records.assoc(search_for).last

关于arrays - 从数组中的数组中提取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31081266/

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