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

103 views (last 30 days)
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,

Answers (2)

Davide Masiello
Davide Masiello on 2 May 2022
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 Comment
Rik
Rik on 2 May 2022
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

Sign in to comment.


Rik
Rik on 2 May 2022
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.

Categories

Find more on Data Import and Export in Help Center and File Exchange

Tags

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!