I have a JSON string that I don't want to completely deserialize. I only want to deserialize the content within' the JSON string.
This is how a string can look like:
"{\"content\":{\"token\":\"*************************\",\"is_verified\":1,\"account_id\":45087,\"is_starter\":0,\"days_left\":1},\"status\":200,\"id\":\"test\",\"method\":\"accounts_login\"}"
I only need the content object. So I need to make a Regex(?) that can make this string into:
"{\"token\":\"*************************\",\"is_verified\":1,\"account_id\":45087,\"is_starter\":0,\"days_left\":1}"
What would be the best way to do this?