I have the following situation:
- 3" a
- 3":a
- 3",a
- 3"a
- 3"2
- 3"A
I need to find a replace a double quote with space every time the double quote is not following by : or ,.
So, for my case the expected results will be:
- 3 a
- 3":a
- 3",a
- 3 a
- 3 2
- 3 A
Any idea how write this logic using regex?
Regards,