I am getting rows from CSV file.
These lines contain commas which separate the text fields and i would like each field to be copied into a string dedicated to it.
I looked with regex.split but couldn't find any help for this function.
How could we do it ?
example this row : aaa,192,xyz,168
to string(1) aaa
string(2) 192
string(3) xyz
string(4) 168
Thanks
These lines contain commas which separate the text fields and i would like each field to be copied into a string dedicated to it.
I looked with regex.split but couldn't find any help for this function.
How could we do it ?
example this row : aaa,192,xyz,168
to string(1) aaa
string(2) 192
string(3) xyz
string(4) 168
Thanks