Returns a long preprocessed string from a vector of strings, converts them to lower case and removes punctuation and digits

CleverClean(text)

Arguments

text

A list of strings that need to be pre-processed.

Value

prepro_text A character vector that cleans and stores all the inputs from text

Examples

text <- list("hello world," , "welcome")
CleverClean(text)
#> [1] "hello world" "welcome"