quoting {glue} | R Documentation |
Quoting operators
Description
These functions make it easy to quote each individual element and are useful
in conjunction with glue_collapse()
. These are thin wrappers around
base::encodeString()
.
Usage
single_quote(x)
double_quote(x)
backtick(x)
Arguments
x |
A character to quote. |
Value
A character vector of the same length as x
, with the same
attributes (including names and dimensions) but with no class set.
Marked UTF-8 encodings are preserved.
Examples
x <- 1:5
glue('Values of x: {glue_collapse(backtick(x), sep = ", ", last = " and ")}')
[Package glue version 1.7.0 Index]