如何在ruby中将变量插入格式化文本

时间:2018-06-27 22:28:40

标签: ruby

所以我有一个像这样用三引号或%q {}格式化的字符串,我想在该字符串中插入一个变量。显然无法使用#{variable}。

variable = "some string" 
puts %q{
My string looks like
this and i want to show
my string here #{variable}
}

1 个答案:

答案 0 :(得分:0)

只需使用大写字母“ Q”

variable = "some string"
%Q{ My math #{1+1} and string #{variable}}