i write this code in R
paste(\"a\",\"b\",\"c\")
which returns the value \"abc\"
\"abc\"
Variable abc has a value
abc
paste("a","b","c") gives "a b c" not "abc"
paste("a","b","c")
"a b c"
"abc"
Anyway, I think you are looking for get():
get()
> abc <- 5 > get("abc") [1] 5