unquote {eply} | R Documentation |
unquote
Remove leading and trailing escaped quotes from character strings.
unquote(x = NULL, deep = FALSE)
x |
character vector |
deep |
remove all outer quotes if |
character vector without leading or trailing escaped quotes around it
quotes
, strings
,
eply
, help_eply
unquote(c("x", "'y'", "\"why\"", "'''z'''"))
unquote(c("x", "'y'", "\"why\"", "'''z'''"), deep = FALSE)
unquote(c("x", "'y'", "\"why\"", "'''z'''"), deep = TRUE)