clean {qdap} | R Documentation |
Preprocess data to remove escaped characters
clean(text.var)
text.var |
The text variable |
Returns a vector of character strings with escaped characters removed.
## Not run:
x <- "I go \\r
to the \\tnext line"
x
clean(x)
## End(Not run)