how to count the number of lines of an external txt file

조회 수: 102 (최근 30일)
Hugo
Hugo 2022년 5월 2일
댓글: Rik 2022년 5월 2일
Hi,
I would like to know how I can count the number of lines (not empty) of an external text file, let's say, a.txt, and save it in a variable.
Best regards,

답변 (2개)

Davide Masiello
Davide Masiello 2022년 5월 2일
Not sure if there is a better way, but this will work
fid = fopen('a.txt','r');
n = 0;
while ~feof(fid)
fgetl(fid);
n = n+1;
end
fclose(fid);
n
n = 15
  댓글 수: 1
Rik
Rik 2022년 5월 2일
Your code doesn't skip empty lines in the middle of the file
% Write an example file with a blank line
fid=fopen('a.txt','w');
fprintf(fid,'line1\n\nline3\n');
fclose(fid);
% Run your code
fid = fopen('a.txt','r');
n = 0;
while ~feof(fid)
fgetl(fid);
n = n+1;
end
fclose(fid);
n
n = 3

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


Rik
Rik 2022년 5월 2일
The problem with your question is that it lacks a definition of line. If your file ends with char(10) or char(13) does that signify a new line (meaning you have a trailing empty line)?
txt=readfile('https://www.mathworks.com/matlabcentral/answers/uploaded_files/985140/a.txt',...
'EmptyLineRule','skip')
txt = 15×1 cell array
{'asd'} {'er' } {'234'} {'sdf'} {'dfh'} {'fy' } {'578'} {'fg' } {'dfg'} {'w34'} {'dfg'} {'df' } {'fh' } {'yu' } {'19' }
a=numel(txt)
a = 15
This is the choice that my readfile function makes. If you use R2020b or later you will be able to use the builtin readlines function. For older releases (or GNU Octave) you will need to use readfile.

카테고리

Help CenterFile Exchange에서 Data Import and Export에 대해 자세히 알아보기

태그

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by