str_remove | R Documentation |
Remove matches, i.e. replace them with ""
.
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
Match a fixed string (i.e. by comparing only bytes), using
Match character, word, line and sentence boundaries with
|
A character vector the same length as string
/pattern
.
str_replace()
for the underlying implementation.
fruits <- c("one apple", "two pears", "three bananas")
str_remove(fruits, "[aeiou]")
str_remove_all(fruits, "[aeiou]")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.