Nothing
trimSpace <- function(x, leading = TRUE, trailing = TRUE, space = "[:space:]"){
if(leading){
pattern <- paste("^[", space, "]*", sep = "", collapse = "")
x <- sub(pattern = pattern, replacement = "", x = x)
}
if(trailing){
pattern <- paste("[", space, "]*$", sep = "", collapse = "")
x <- sub(pattern = pattern, replacement = "", x = x)
}
return(x)
}
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.