Ruby 等价于 Python 的 s = “ hello,% s. Where is% s?”% (“ John”,“ Mary”)’

在 Python 中,这种字符串格式化的习惯用法非常常见

s = "hello, %s. Where is %s?" % ("John","Mary")

Ruby 中的等价物是什么?

93309 次浏览

几乎是同样的道理:

"hello, %s. Where is %s?" % ["John","Mary"]
# => "hello, John. Where is Mary?"

其实差不多

s = "hello, %s. Where is %s?" % ["John","Mary"]

最简单的方法是 字符串插值,你可以直接把一小段 Ruby 代码注入到你的字符串中。

name1 = "John"
name2 = "Mary"
"hello, #{name1}.  Where is #{name2}?"

您还可以在 Ruby 中执行格式化字符串。

"hello, %s.  Where is %s?" % ["John", "Mary"]

请记住在这里使用方括号。 Ruby 没有元组,只有数组,而这些数组使用方括号。

在 Ruby > 1.9中,你可以这样做:

s =  'hello, %{name1}. Where is %{name2}?' % { name1: 'John', name2: 'Mary' }

去看医生