可否用数组多参数

可否用数组多参数

@strA="hello <0>"
arr=["no1","world"]

def show(arr)
 p @strA.sub(/<0>/,arr[1])          #输出效果 hello world
end

上面代码错了,帮忙修正!!!
我想要的结果是输出:


[Copy to clipboard] [ - ]
p @strA.sub("<0>","")+arr[1]


[Copy to clipboard] [ - ]