Nothing
#' @description Base version of [stringr::str_subset] for internal use.
#' @noRd
str_subset_ <- function(x, pattern) {
x[grepl(x = x, pattern = pattern)]
}
#' @description Base version of [stringr::str_subset] for internal use.
#' @noRd
str_remove_ <- function(x, pattern) {
gsub(x = x, pattern = pattern, replacement = "")
}
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.