Nothing
#' Remove Escaped Characters
#'
#' Preprocess data to remove escaped characters
#'
#' @param text.var The text variable
#' @return Returns a vector of character strings with escaped characters removed.
#' @keywords escaped character
#' @export
#' @examples
#' \dontrun{
#' x <- "I go \\r
#' to the \\tnext line"
#' x
#' clean(x)
#' }
clean <-
function(text.var) {
gsub("\\s+", " ", gsub("\\\\r|\\\\n|\\n|\\\\t", " ", text.var))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.