Nothing
#' Escape infix regex characters
#'
#' @param x character vector with strings to be used in a regex
#'
#' @return a character vector
#' @noRd
escape_strings <- function(x) {
strings_to_escape <- c("*", ".", "?", "^", "+", "$", "|", "(", ")", "[",
"]", "{", "}", "\\", "-")
out <- gsub(
paste0("([\\", paste0(collapse = "\\", strings_to_escape), "])"),
"\\\\\\1",
x,
perl = TRUE)
return(out)
}
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.