Link to R-Faq Duplicate (different from above)
I have a string as follows:
"[{\"Year\":\"\",\"Market\":\"The Place\",\"Due\":\"\"}]"
And I need to remove the backslashes to have:
"[{"Year":"","Market":"The Place","Due":""}]"
I have tried:
stri_unescape_unicode(theString)
and also:
gsub("\\","",theString)
But neither works.