In a larger R-Script I have to address the content of a character variable that itself is stored within a variable of class name. In the following small example, how do I have to address B to see the content of A (thus "A") and not just the name (thus A)?
> A <- "A"
> B <- as.name(A)
> B
A