7

我想使用变量 insite %w{} 但这只会生成字符串。

我试过了

a="hello",
b="world"
%w{a b}

但这是 ["a", "b"]我要显示的显示 ["hello","world"]

4

1 回答 1

18

如果要使用变量,可以使用插值和%W变体

a = "hello"
b = "world"

pp %W{#{a} #{b} this is normal text} #=> ["hello", "world", "this", "is", "normal", "text"]
于 2013-05-23T07:16:15.523 回答