Dependency-free drop-in alternative for stringr::str_remove_all()
.
str_remove_all(string, pattern)
A character vector.
Input vector. Either a character vector, or something coercible to one.
Pattern to look for.
The default interpretation is a regular expression,
as described in base::regex.
Control options with regex()
.
Match a fixed string (i.e. by comparing only bytes), using fixed()
.
This is fast, but approximate.