I have the following lines in java:
1234,"Calle Jaime III, 34", 67,3,U
1235,Avenida Los Algodones, 12,1,L
1236,"Calle Principal""31234", 46,3,H
1237,"Calle Alfonso X,22", 65,2,J
I would like to do a Split for the character
,
but as you can see in the example, the address has quotes so when you have a comma within a field with quotation marks the split is done poorly.
I try to get the following:
1234 Calle Jaime III 34 67 3 U
1235 Avenida Los Algodones 12 1 L
1236 Calle Principal 31234 46 3 H
1237 Calle Alfonso X 22 65 2 J