溫馨提示×

Ruby數(shù)組操作怎樣快速插入

小樊
81
2024-11-06 02:50:33
欄目: 編程語言

在Ruby中,可以使用insert方法在數(shù)組的指定位置插入一個元素。這是一個例子:

arr = [1, 2, 4, 5]
element_to_insert = 3
position = 2

arr.insert(position, element_to_insert)
puts arr.inspect

輸出結(jié)果:

[1, 2, 3, 4, 5]

在這個例子中,我們在數(shù)組arr的第2個位置(索引為1)插入了元素3。你可以根據(jù)需要更改element_to_insertposition變量的值。

0