Nothing
splitString <- function(x,
splittingValuesRegex = rock::opts$get("splittingValuesRegex")) {
res <-
strsplit(
x,
splittingValuesRegex
);
### Retain empty elements (empty lines)
res <- lapply(res, function(x) {
if (length(x) == 0) {
return("");
} else {
return(x);
}
});
return(
unlist(
res
)
);
}
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.