str_extract_match {textTools} | R Documentation |
Extract words from a vector that are found in another vector.
Description
Extract words from a vector that are found in another vector.
Usage
str_extract_match(x, y)
Arguments
x |
A vector of words. |
y |
A vector of words to test against. |
Value
x, with the words not found in y removed.
Examples
str_extract_match(
x = c("a", "dog", "went", "to", "the", "store"),
y = c("dog", "to", "store")
)
[Package textTools version 0.1.0 Index]