In Range("A1") I have a string like One,Two,"Three,Four",Five,Six,"Seven,Eight",Nine,Ten,"Eleven,Twelve"
The string has to be split at the comma but the Groups marked by the double quotes should stay intact.
C1 to K1 should look like One Two "Three,Four" Five Six "Seven,Eight" Nine Ten "Eleven,Twelve"
The double quotes should also be included in the final result.
I have written a function that works well but I'm just curious if it's possible to do the same thing using Regex.
Thanks
Bookmarks