gpt4 book ai didi

arrays - 更改 .each 循环中引用的数组元素的值?

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

如何实现以下操作:我想更改在 .each 循环中的管道字符之间引用的数组元素的值。

这是我想做的,但目前没有工作的例子:

x = %w(hello there world)
x.each { |element|
if(element == "hello") {
element = "hi" # change "hello" to "hi"
}
}
puts x # output: [hi there world]

很难找到如此笼统的东西。

最佳答案

您可以使用 collect!map! 就地修改数组来获得您想要的结果:

x = %w(hello there world)
x.collect! { |element|
(element == "hello") ? "hi" : element
}
puts x

在每次迭代中,元素被 block 返回的值替换到数组中。

关于arrays - 更改 .each 循环中引用的数组元素的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5646710/

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