powered by
Remove words from a vector that don't have a minimum number of characters.
str_rm_short_words(x, min_char_length)
A vector of words.
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.
# NOT RUN { str_rm_short_words( x = c("a", "dog", "went", "to", "the", "store"), min_char_length = 3 ) # }
Run the code above in your browser using DataLab