Description Usage Arguments Value Examples
Remove words from a vector that have more than a maximum number of characters.
| 1 | str_rm_long_words(x, max_char_length)
 | 
| x | A vector of words. | 
| max_char_length,  | An integer, the maximum number of characters a word can have to not be removed. | 
x, with the words not having a character count less than or equal to the max_char_length removed.
| 1 2 3 4 | str_rm_long_words(
x = c("a", "dog", "went", "to", "the", "store"),
max_char_length = 2
)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.