R/unicode.R

Defines functions `spaces` `doublequotes` `singlequotes` `tildae` `dashes`

`dashes` <- function() {
    return(c("\u002d", "\u2013"))
}

`tildae` <- function() {
    return(c("\u007e", "\u223c", "\u00ac", "\u223d"))
}

`singlequotes` <- function() {
    return(c("\u00b4", "\u0060", "\u2018", "\u2019"))
}

`doublequotes` <- function() {
    return(c("\u201c", "\u201d"))
}

`spaces` <- function() {
    return("\u00a0") # multibyte space
}

Try the admisc package in your browser

Any scripts or data that you put into this service are public.

admisc documentation built on Sept. 12, 2024, 6:27 a.m.