gpt4 book ai didi

arrays - Ruby 数组索引

转载 作者:太空宇宙 更新时间:2023-11-03 17:45:24 25 4
gpt4 key购买 nike

我有一个可能会成为一个简单问题要回答的问题。

我有一个名为 emails 的数组。

我正在使用 emails.each do |email| 遍历它们。

我想说的是:

# if array index is 0, do this.

我试过 if email.index == 0

我试图找到解决方案,但终究还是找不到。因为它只有一个参数,所以我想避免使用 case 语句。

最佳答案

尝试 each_with_index

emails.each_with_index do |email, index|

if index == 0
# do something
end

end

关于arrays - Ruby 数组索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39164549/

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