有没有办法用gsub替换R中的特殊字符串?
我有一些列中包含\\n
,我希望将其更改为\n
,但gsub不起作用
以下是一个例子:
gsub("\\n", "\n", "\\n this is a test \\n data")
我收到以下输出:
[1] "\\n this is a test \\n data"
答案 0 :(得分:3)
您可以通过在gsub命令末尾添加参数fixed = T来执行您想要的操作。
gsub("\\n", "\n", "\\n this is a test \\n data",fixed=T)
[1] "\n this is a test \n data"