str_rm_long_words {textTools}R Documentation

Remove words from a vector that have more than a maximum number of characters.

Description

Remove words from a vector that have more than a maximum number of characters.

Usage

str_rm_long_words(x, max_char_length)

Arguments

x

A vector of words.

max_char_length

An integer, the maximum number of characters a word can have to not be removed.

Value

x, with the words not having a character count less than or equal to the max_char_length removed.

Examples

str_rm_long_words(
x = c("a", "dog", "went", "to", "the", "store"),
max_char_length = 2
)

[Package textTools version 0.1.0 Index]