str_extract_nomatch {textTools} | R Documentation |
Extract words from a vector that are not found in another vector.
str_extract_nomatch(x, y)
x |
A vector of words. |
y |
A vector of words to test against. |
x, with the words found in y removed.
str_extract_nomatch(
x = c("a", "dog", "went", "to", "the", "store"),
y = c("dog", "to", "store")
)