Nothing
`tilde1st` <- function(x) {
is.element(
substring(
gsub(
paste0("[[:space:]|", "\u00a0", "]"), # multibyte space
"",
x
),
1, 1
),
tildae()
)
}
`hastilde` <- function(x) {
grepl(paste(tildae(), collapse = "|"), x)
}
`notilde` <- function(x) {
gsub(
paste(tildae(), collapse = "|"),
"",
gsub(
paste0("[[:space:]|", "\u00a0", "]"), # multibyte space
"",
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.