This question already has answers here:
How to escape backslashes in R string

(3个答案)


6年前关闭。




我在R上工作,遇到了转义反斜线的麻烦。我正在使用stringr库。
install.packages("stringr", repos='http://cran.us.r-project.org')
library("stringr")

我想做str = str_replace_all(str, "\", "")
因此,我尝试了str = str_replace_all(str, "\\", ""),但无法正常工作。

我该怎么办?

最佳答案

我找到了可行的解决方案

str = gsub("([\\])","", str)

关于r - 如何在R中转义反斜杠? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14879204/

10-12 13:56