Alias for str_replace(string, pattern, "")
.
str_remove(string, pattern) str_remove_all(string, pattern)
string | Input vector. Either a character vector, or something coercible to one. |
---|---|
pattern | Pattern to look for. The default interpretation is a regular expression, as described
in stringi::stringi-search-regex. Control options with
Match a fixed string (i.e. by comparing only bytes), using
Match character, word, line and sentence boundaries with
|
A character vector.
str_replace()
for the underlying implementation.
#> [1] "ne apple" "tw pears" "thre bananas"str_remove_all(fruits, "[aeiou]")#> [1] "n ppl" "tw prs" "thr bnns"