get_sentences {syuzhet} | R Documentation |
Sentence Tokenization
Description
Parses a string into a vector of sentences.
Usage
get_sentences(text_of_file, fix_curly_quotes = TRUE, as_vector = TRUE)
Arguments
text_of_file |
A Text String |
fix_curly_quotes |
logical. If |
as_vector |
If |
Value
A Character Vector of Sentences
Examples
(x <- c(paste0(
"Mr. Brown comes! He says hello. i give him coffee. i will ",
"go at 5 p. m. eastern time. Or somewhere in between!go there"
),
paste0(
"Marvin K. Mooney Will You Please Go Now!", "The time has come.",
"The time has come. The time is now. Just go. Go. GO!",
"I don't care how."
)))
get_sentences(x)
get_sentences(x, as_vector = FALSE)
[Package syuzhet version 1.0.7 Index]