text_to_words: text_to_words splits a string of text x
(consisting of one or more character strings)
into a vector of its constituting words.
Description
text_to_words removes all (standard) punctuation marks
and empty spaces in the resulting parts,
before returning a vector of the remaining character symbols
(as the words).
Usage
text_to_words(x)
Arguments
x
A string of text (required),
typically a character vector.
Details
Internally, text_to_words uses strsplit to
split strings.
See Also
text_to_sentences for splitting text into a vector of sentences;
count_words for counting the frequency of words;
strsplit for splitting strings.