I am currently trying to get data from an webpage programmatically. I can extract a string that contains JSON from the page body but sometimes it contains double quotes which are not escaped, because the string has been rendered. Is there a possibility to use some regex to escape those double quotes? Or any other possibilites?
Example:
{
"rows": [
["foobar", "here is my "double quoted" text", "2"]
]
}