如何替换str_replace_all中模式的多次出现?

时间:2018-12-21 09:20:14

标签: r str-replace stringr

我正在尝试将括号替换为“。”在字符串“ abc(def)ghi”中。 使用的代码如下:

str_replace_all("abc(def)ghi", "\\)|\\)", ".")

输出为"abc(def.ghi"

期望输出应为"abc.def.ghi"

有什么简单的方法可以在R中实现吗?

1 个答案:

答案 0 :(得分:4)

您可以使用以下代码段:

str_replace_all("abc(def)ghi", "[()]", ".")