text_expand | R Documentation |
text_expand
is simple string interpolation function. It searches in its
arguments expressions in curly brackets {expr}
, evaluate them and substitute with
the result of evaluation. See examples.
text_expand(..., delim = c("\\{", "\\}"))
... |
character vectors |
delim |
character vector of length 2 - pair of opening and closing
delimiters for the templating tags. By default it is curly brackets. Note
that |
Vector of characters
i = 1:5
text_expand("q{i}")
i = 1:3
j = 1:3
text_expand("q1_{i}_{j}")
data(iris)
text_expand("'iris' has {nrow(iris)} rows.")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.