I have this JSON that I get from API, I have trouble with Parsing the JSON to get the value I want this is the JSON
[\"{\\\"UPDATE_TYPE\\\":\\\"NOTE_ADDED\\\",\\\"UPDATE_TEXT\\\":\\\"Notenya begini\\\",\\\"UPDATE_TIME\\\":\\\"Fri, Dec 4, 17:02\\\",\\\"UPDATE_TIME_EPOCH\\\":1607076127834,\\\"ATTACHMENT\\\":\\\"\\\"}\",\"{\\\"UPDATE_TYPE\\\":\\\"STATUS_UPDATED\\\",\\\"UPDATE_TEXT\\\":\\\"Complete\\\",\\\"UPDATE_TIME\\\":\\\"Fri, Dec 4, 17:02\\\",\\\"UPDATE_TIME_EPOCH\\\":1607076127840,\\\"ATTACHMENT\\\":\\\"\\\"}\"]
I already tried to Deserialize it twice to remove the encoding. And I try to use Regex too but I still get an error when tried to parse using Newtonsoft JAray.Parse. I never encounter JSON like this before. any suggestion to remove the encoding and parse the value from that JSON?