removeCitation {tm.plugin.mail} | R Documentation |
Remove E-Mail Citations
Description
Remove citations, i.e., lines beginning with >
, from an e-mail
message.
Usage
## S3 method for class 'MailDocument'
removeCitation(x, ...)
Arguments
x |
A mail document. |
... |
the argument |
Author(s)
Ingo Feinerer
See Also
removeMultipart
to remove non-text parts from multipart
e-mail messages, and removeSignature
to remove signature
lines from e-mail messages.
Examples
require("tm")
newsgroup <- system.file("mails", package = "tm.plugin.mail")
news <- VCorpus(DirSource(newsgroup),
readerControl = list(reader = readMail))
news[[8]]
removeCitation(news[[8]])
removeCitation(news[[8]], removeQuoteHeader = TRUE)
[Package tm.plugin.mail version 0.2-2 Index]