I have something like this:
"jo\\xe3o madeira"
And I want this:
"jo\xe3o madeira"
How can I replace the \\ for a single \ I have tried stuff like this:
gsub("\\\\", "\\", "jo\\xe3o madeira")
And the output was:
"joxe3o madeira"
So it completely removed the "\"
Thanks in advance