2
以下のような文字列から大括弧を削除しようとしています。str_replaceは閉じ括弧を置き換えませんが、gsubは置き換えますか?
library(stringr)
x <- "(Verhoeff,1937)"
str_replace(string = x, pattern = "(\\()|(\\))", replacement = "")
[1] "Verhoeff,1937)"
gsub(pattern = "(\\()|(\\))", replacement = "", x = x)
[1] "Verhoeff,1937"
str_replace
閉じ括弧が見つからないようですか? アイデアは何故ですか?
'sub'≈' str_replace'。 'gsub'≈' str_replace_all'( "g"は "global"を意味します)。 –
説明をありがとう。 – zankuralt