1. Replace all forward slashes in a string with backslashes. x <- c("a/b/c/d/e") str_replace_all(x, "\\/", "\\\\") %>% writeLines()
確定! 回上一頁