powered by
Remove words from a vector based on the number of characters in each word.
str_rm_words_by_length(x, min_char_length = 0, max_char_length = Inf)
A vector of words.
An integer, the minimum number of characters a word can have to not be removed.
An integer, the maximum number of characters a word can have to not be removed.
x, with the words not having a character count of at least the min_char_length and at most the max_char_length removed.
# NOT RUN { str_rm_words_by_length( x = c("a", "dog", "went", "to", "the", "store"), min_char_length = 3 ) # }
Run the code above in your browser using DataLab