A wrapper to text_tokenize that tokenizes text into words. Since using text_tokenize()'s option non_token might slow things down considerably this one purpose wrapper is a little more clever than the general implementation and hence much faster.
text_tokenize_words(string, non_token = FALSE)# S3 method for default
text_tokenize_words(string, non_token = FALSE)
the text to be tokenized
whether or not token as well as non tokens shall be returned.