R/string_interpolation.R
grapes-less-than-s-grapes.Rd
String interpolation using bquote
-stype .() notation. Pure R, no C/C++ code called.
str %<s% envir
charater string to be substituted into
environemnt to look for values
modified strings
See also https://CRAN.R-project.org/package=R.utils, https://CRAN.R-project.org/package=rprintf, and https://CRAN.R-project.org/package=glue.
"x is .(x)" %<s% list(x = 7)
#> [1] "x is 7"