R/quote.R

sQuote <- function (x)
{
    if (length(x) == 0)
        return(character())
    paste("'", x, "'", sep = "")
}

dQuote <- function (x)
{
    if (length(x) == 0)
        return(character())
    paste("\"", x, "\"", sep = "")
}

Try the memisc package in your browser

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

memisc documentation built on May 2, 2019, 5:45 p.m.