I have this:
st = '"a": "hello", "c": "another, string, with multiple", "b": "hello, world"'
I want to replace the comma by an empty space, but it should only be removed IF the character before it is NOT a double quote (")
So the result of st would be
st = '"a": "hello", "c": "another string with multiple", "b": "hello world"'