Looking for a way to replace double quotes within specific characters in a String. Here's an example string:
"XML": "<MyTag>"Value1"</MyTag><MyTag2>Value2</MyTag2>"
The desired output is:
"XML": "<MyTag>\"Value1\"</MyTag><MyTag2>Value2</MyTag2>"
Attempts with regexr to match the quotes have been unsuccessful like:
/<MyTag>(")<\/MyTag>/
/(<MyTag>)"(<\/MyTag>)/
Can quotes between tags be escaped?