标签: string r newline
我想使用R切断字符串中不需要的其他新行字符。 例如,如果我有字符串:
"This is an example test string. \n \n \n"
我希望它看起来像这样:
"This is an example test string. \n"
答案 0 :(得分:3)
尝试
x <- gsub("\\n\\s*", "\n", x)
这将搜索后跟空格的任何换行符,并将其替换为单个换行符