Suppose you have a character vector:
char <- c("one", "two", "three")
When you make reference to an index value, you get the following:
> char[1]
[1] "one"
How can you strip off the quote marks from the return value to get the following?
[1] one
Just try noquote(a)
noquote("a")
[1] a