从字符串中删除'\'

时间:2013-09-17 10:56:01

标签: ruby-on-rails string gsub

我需要从一个字符串中删除'\',无论它出现在轨道上的ruby中。是否可以使用gsub或类似的东西?

例如考虑一个字符串,string =“嘿老板\你好吗”。 我需要打印成“嘿老板你好吗”。

3 个答案:

答案 0 :(得分:1)

如何使用:

'hey boss\ how are you'.gsub('\\',' ')     

=> "hey boss how are you" 

答案 1 :(得分:1)

'hey boss\ how are you'.tr('\\','')

答案 2 :(得分:1)

'hey boss\ how are you'.delete!('\\')
   => "hey boss how are you"