unquote {eply} | R Documentation |
Function unquote
Description
Remove leading and trailing escaped quotes from character strings.
Usage
unquote(x = NULL, deep = FALSE)
Arguments
x |
character vector |
deep |
remove all outer quotes if |
Value
character vector without leading or trailing escaped quotes around it
See Also
quotes
, strings
,
eply
, help_eply
Examples
unquote(c("x", "'y'", "\"why\"", "'''z'''"))
unquote(c("x", "'y'", "\"why\"", "'''z'''"), deep = FALSE)
unquote(c("x", "'y'", "\"why\"", "'''z'''"), deep = TRUE)
[Package eply version 0.1.2 Index]