SyntaxFix
Write A Post
Hire A Developer
Questions
There are no quotes in the return value, only in the default output from print() when you display the value. Try
> print(char[1], quote=FALSE) [1] one
or
> cat(char[1], "\n") one
to see the value without quotes.