How to locate character string in a csv file and skip it
Mostra commenti meno recenti
I'm reading a csv file, however, somewhere in the file, (unknown location, so the row, column for this character), an unrecognizable or non-numeric character string (for example, Fö£a´]=Õê´‡X¼Ð, which is generated by binary to ascii conversion process) will be encountered, so the format specification in textscan cannot be used (because of the unknown location). So I saw the error in the following. Is there any way to use textscan or even csvread to process this kind of csv file, without compromising the speed? Many thanks.
"Mismatch between file and format string.
Trouble reading 'Numeric' field from file (row number 1096608,
field number 110) ==> Fö£a´]=Õê´‡X¼Ð , , , ,$, , , , , , , , ,
, , , , , , , , , , , , , , , \n
Error in LoadDumpDataCSV_V2 (line 53)
dataArray = textscan(fileID, formatSpec, 'Delimiter',
',', 'MultipleDelimsAsOne', false, 'ReturnOnError',
false);
4 Commenti
dpb
il 17 Giu 2016
Is this a constant string or could it be anything, just non-numeric? And what kind of numerics, floating point with/without E, integer, what are the boundaries here?
I'm thinking you'll probably do better to read the file as a char() array and then process in memory unless it's simply too big...
Guillaume
il 17 Giu 2016
If the file starts as binary, why not parse it as such rather than have an expensive binary to text conversion and an expensive parsing afterward?
Tina Zhao
il 17 Giu 2016
Modificato: Walter Roberson
il 17 Giu 2016
Risposte (0)
Categorie
Scopri di più su Text Files in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!