Replace ALL occurrences of a match in a string
Let's say I have a very long string, which essentially are just field names, comma separated. My problem, when trying to break it into separate fields, is that some names have comma inside them, like "{0,0}" or "{45,-45}" or "{90,90}".In order to separate this long string into fields I need to replace that comma with something.This is a small piece of that string: "Normal_0_{0,0}, Normal_90_{45,-4...