Answers:
最简单的方法是字符串插值。您可以将少量Ruby代码直接注入您的字符串中。
name1 = "John"
name2 = "Mary"
"hello, #{name1}. Where is #{name2}?"
您也可以在Ruby中格式化字符串。
"hello, %s. Where is %s?" % ["John", "Mary"]
请记住在此处使用方括号。Ruby没有元组,只有数组,并且使用方括号。
'#{name1}'
它与相同"#{name1}"
。
'#{"abc"}' # => "\#{\"abc\"}"
,但您想要的是"#{"abc"}" # => "abc"
在Ruby> 1.9中,您可以执行以下操作:
s = 'hello, %{name1}. Where is %{name2}?' % { name1: 'John', name2: 'Mary' }
几乎相同的方式:
irb(main):003:0> "hello, %s. Where is %s?" % ["John","Mary"]
=> "hello, John. Where is Mary?"