qq {GetoptLong} | R Documentation |
Simple variable interpolation in texts
Description
Simple variable interpolation in texts
Usage
qq(..., envir = parent.frame(), code.pattern = NULL, collapse = TRUE, sep = " ")
Arguments
... |
Text string in which variables are marked with certain rules |
envir |
Environment where to look for variables. By default it is the environment where |
code.pattern |
Pattern of marks for the variables. By default it is |
collapse |
If variables return vector of length larger than one, whether collapse into one string or return a vector |
sep |
Separator character when there are multiple templates. |
Details
I like variable interpolation in Perl. But in R, if you want to concatenate plain text and variables,
you need to use functions such as paste
. However, if there are so many variables, quotes, braces
in the string you want to construct, it would be painful.
This function allows you to construct strings as in Perl style. Variables are
marked in the text with certain rule. qq
will look up these variables in user's
environment and replace the variable marks with their real values.
For more explaination of this function, please refer to vignette.
Author(s)
Zuguang Gu <z.gu@dkfz.de>
Examples
a = 1
b = "text"
qq("a = @{a}, b = '@{b}'")
qq("a = @{a}", "b = '@{b}'", sep = ", ")
a = 1:2
qq("a = @{a}, b = '@{b}'")
qq("a = @{a}, b = '@{b}'", collapse = FALSE)
a = 1
qq("a = `a`, b = '`b`'", code.pattern = "`CODE`")