I want to split by commas that are not within parentheses in Excel VBA.
I need VBA script for split string
Ex:
myString = "ab, cd(c1,c2,d1), ef, gh ,ij(i1,i2,j1,j2)"
E need output as below :
[
ab,
cd(c1,c2,d1),
ef,
gh,
ij(i1,i2,j1,j2)
]