如何得到以下情況:我想更改.each
循環中管道字符之間引用的數組元素的值。更改.each循環中引用的數組元素的值?
這裏是我想要做一個例子,但當前未工作:
x = %w(hello there world)
x.each { |element|
if(element == "hello") {
element = "hi" # change "hello" to "hi"
}
}
puts x # output: [hi there world]
很難查找東西,所以一般。
有一系列名爲[Enumerating enumerable]的博客文章(http://www.globalnerdy.com/tag/enumerating-enumerable/),您可能會覺得有用。 – 2011-04-13 22:30:05