I need make split for commas on a String. But I need ignore commas inside the text fields
Input example:
'Field1','Field2','Field3, this field, has, multiples commas','Field4'
Output that I want:
'Field1'
'Field2'
'Field3, this field, has, multiples commas'
'Field4'
Output that I got:
'Field1'
'Field2'
'Field3
 this field,
 has,
 multiples commas'
'Field4'
Can some one help me?
 
    