Skip specific line from a text file

조회 수: 6 (최근 30일)
MS11
MS11 2020년 9월 22일
답변: Walter Roberson 2020년 9월 22일
I want to read 2041 text files from a folder but mostly files contain 'error found' at the last. How can I skip that line from reading by the code. Picture of the file has been attached.

답변 (2개)

Ruger28
Ruger28 2020년 9월 22일
One approach using fgetl. Another would be to read the entire file in, and just search and throw out that line.
fname = '409.txt'
FID = fopen(fname,'rt');
cntr = 1;
loopEn = 1;
while loopEn
temp = fgetl(FID);
if ~strcmpi(temp,'e r r o r f o u n d') % skip line of error found
FileData{cntr} = temp;
cntr = cntr + 1;
elseif temp == -1
break;
end
end
  댓글 수: 1
MS11
MS11 2020년 9월 22일
thank you Ruger but there are 2041 files and mostly contain the same problem. How can SKIP this from all files so my code doesn't stop.

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


Walter Roberson
Walter Roberson 2020년 9월 22일
If you use fopen / textscan / fclose, then you can specify 'commentstyle', 'e r r' . That tells it to skip from 'e r r' to the end of the line when it it is reading in data.

카테고리

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