我正在制作某个网站的解析器。 作为解析器的输出,我得到如下字符串:
"some text \t\t some another text \t\t another text"
我想将\t\t
替换为<br>
。我怎么能这样做?
答案 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"