I have an object
{
"p1": "hoho",
"p2": "haha",
"p3": {
"v1": "hehe",
"v2": "{\"m1\":\"content1\", \"m2\":\"content2\"}"
}
}
How to convert it into:
{
"p1": "hoho",
"p2": "haha",
"p3": {
"v1": "hehe",
"v2": {
"m1":"content1",
"m2":"content2"
}
}
}
The question is most for converting nested JSON string inner Object to JSON.