Description Usage Arguments Value Author(s) See Also Examples
String formatting given an environment
1 | lprintf(x, envir = sys.frame(sys.parent(1)))
|
x |
character, a string to format. |
envir |
the |
character
Xiaobei Zhao
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | a="fox";b="dog";
x <- 'The quick brown %(a)s jumps over the lazy %(b)s?
Or the quick brown %(b)s jumps over the lazy %(a)s?'
## format given the global environment
lprintf(x)
## [1] "The quick brown fox jumps over the lazy dog?
## Or the quick brown dog jumps over the lazy fox?"
## format given a local environment
myenv <- new.env()
local(
{a="coyote";b="dog";},
envir=myenv
)
lprintf(x,myenv)
## [1] "The quick brown coyote jumps over the lazy dog?
## Or the quick brown dog jumps over the lazy coyote?"
|
Attaching package: 'Xmisc'
The following object is masked from 'package:base':
dir.exists
[1] "The quick brown fox jumps over the lazy dog?\nOr the quick brown dog jumps over the lazy fox?"
[1] "The quick brown coyote jumps over the lazy dog?\nOr the quick brown dog jumps over the lazy coyote?"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.