我有以下兩個變量:替換元素
array = ['h','e','l','l','o']
string = '023'
所有在array
元素沒有索引的string
匹配某個地方需要被替換下劃線。新陣列應該如下所示:['h','_','l','l','_']
。
我想這樣做這樣
.map.with_index do |e,i|
if (i != string) #Somehow get it to check the entire string
e = '_'
end
end
你的問題是什麼? – sawa 2014-11-06 18:40:07
「023」擴展爲「[0,2,3]」還是「[0,23]」?這個問題會得到改善,你可以將它改變爲一系列索引。 – 2014-11-06 19:08:08