I have a string:
"""
{
"description":"123456 asdad asa "0-asd;'asddf1231" "12" ",
"sale":12
}
"""
I want to decode this into JSON, but the description field is ill-formatted. I am thinking about using re.sub to remove all of the inner quotes from the description field, but I've had no luck so far. Does anyone have a good regex hint? Thanks!
"description"always the first key? Starting from"desc, is the relevant text always going to start with"description":"? Is it always going to end with",? Is it always on it's own line?