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