目标:将x转为y;其中x具有任意数量的空格,\ rs和\ ns。
ArrayList
我使用str_replace_all()做了一些尝试:
ArrayBuffer
答案 0 :(得分:2)
gsub
将为您完成这项工作。
gsub(",\\s*\\n\\s*\\)", ")", s)
或
gsub(",\\s*[\\r\\n]+\\s*\\)", ")", s)
示例:强>
> x <- "some text, \r\n \r\n)more text"
> gsub(",\\s*\\n\\s*\\)", ")", x)
[1] "some text)more text"