I want to use a regex to identify commas that occur within double quotes, and then I will want to strip those commas out. There can be any number of commas within the quotes, and there can be multiple sets of quotes on a line. So here's an example of input and desired output:
dog, "apple, three", tree, cat, "orange, yellow", leaf =>
dog, "apple three", tree, cat, "orange yellow", leaf
dog, "apple, three, blue", tree, cat, "orange, jar, yellow", leaf =>
dog, "apple three blue", tree, cat, "orange jar yellow", leaf
I want to strip out just the commas within the quotes, not the ones outside, and keep the rest as is.