0
從這個命令,我可以得到數組索引,但我可以使用該索引作爲整數更改數組索引到整數紅寶石代碼
index=strInput.each_index.select{|i| strInput[i] == subInput}.map(&:to_i)
puts (index)
當在打印輸出,它與如[15]
桶顯示當我嘗試使用索引直接像
puts scores[index]
它返回錯誤
`[]': can't convert Array into Integer (TypeError)
如何將索引轉換爲整數。
Ps。 strInput = {1,2,3,4,5}/subInput = {3}
這是work.Thank你。 – user3214044