I want to read a CSV file in Android, but for rows with some blank columns, CSV writes something like this:
,,,,ABC,,,d,mfcmf,fgt,
When I tokenize the above line I get ABC as the first string, when I need "" (i.e. an empty string).
How can I tokenize CSV rows, but have blank columns show up in the results as empty strings?
First_column = "";
Second_column = "";
Third_column = "";
Forth_column = "";
Fifth_column = "ABC";