Remove Escaped Characters
Preprocess data to remove escaped characters
clean(text.var)
text.var
: The text variableReturns 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)