ruby on rails 将字符串中的单引号替换为双引号
ruby on rails replace single-quotes with double-quote in a string
我正在尝试用字符串中的双引号替换单引号,如下所示:
current_res = 25
lowest_res = 15
str = "The result of the child is '#{current_res}' and the lowest grade is '#{lowest_res }'."
我需要输出如下所示:
str = The result of the child is "25" and the lowest grade is "15".
我尝试了使用 gsub 的不同方法,但目前没有任何效果。有什么想法吗?
如果那是您覆盖的唯一情况,那么您需要在双引号字符串中显示一些输出。像下面这样简单的东西怎么样
str = "The result of the child is \"#{current_res}\" and the lowest grade is \"#{lowest_res }\" ."
您可以在双引号字符串中转义引号。
我正在尝试用字符串中的双引号替换单引号,如下所示:
current_res = 25
lowest_res = 15
str = "The result of the child is '#{current_res}' and the lowest grade is '#{lowest_res }'."
我需要输出如下所示:
str = The result of the child is "25" and the lowest grade is "15".
我尝试了使用 gsub 的不同方法,但目前没有任何效果。有什么想法吗?
如果那是您覆盖的唯一情况,那么您需要在双引号字符串中显示一些输出。像下面这样简单的东西怎么样
str = "The result of the child is \"#{current_res}\" and the lowest grade is \"#{lowest_res }\" ."
您可以在双引号字符串中转义引号。