필터 지우기
필터 지우기

How to locate character string in a csv file and skip it

조회 수: 1 (최근 30일)
Tina Zhao
Tina Zhao 2016년 6월 17일
편집: Walter Roberson 2016년 6월 17일
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
Guillaume
Guillaume 2016년 6월 17일
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
Tina Zhao 2016년 6월 17일
편집: Walter Roberson 2016년 6월 17일
Thanks for everyone's response. The file is pretty big, this is our internal tool data, up to a few hundred MB data.
I searched on others' post, and found this can solve my problem:
a2 = textscan(fileID, formatSpec, 'Delimiter', ',','HeaderLines',1,'CollectOutput',1);
% dataArray = textscan(fileID, '%f');
dataArray = [dataArray;a2{1}];
I think it skipped the whole row if there's a character, so my bad data can be much smaller.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by