str_rm_short_words {textTools} | R Documentation |
Remove words from a vector that don't have a minimum number of characters.
str_rm_short_words(x, min_char_length)
x |
A vector of words. |
min_char_length |
An integer, the minimum number of characters a word can have to not be removed. |
x, with the words not having a character count greater than or equal to the min_char_length removed.
str_rm_short_words(
x = c("a", "dog", "went", "to", "the", "store"),
min_char_length = 3
)