用\ n字符轨替换\ t \ t字符

时间:2016-05-06 16:46:49

标签: ruby-on-rails ruby string

我正在制作某个网站的解析器。 作为解析器的输出,我得到如下字符串:

"some text \t\t some another text \t\t another text"

我想将\t\t替换为<br>。我怎么能这样做?

1 个答案:

答案 0 :(得分:4)

使用gsub

"some text \t\t some another text \t\t another text".gsub("\t\t", "<br>")
=> "some text <br> some another text <br> another text"