I have an API that returns an HTML string but it has some extra characters in the API and I want to replace that with something else.
<meta name=\"viewport\" content=\"initial-scale=1.0, maximum-scale=1.0\">
I want to replace \" with " using that using replace so that it becomes
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0">
What is the regex string.replace() for doing the above task?