I have the following string:
c(\"Yes \", \" No\")
I want to remove the backslashes such that it becomes:
c("Yes", "No)
I tried the following, as suggested here:
gsub("\\","", "c(\"Yes \", \" No\")", fixed = TRUE)
But it does not work, so I must have misunderstood something.