Number of lines in a txt file (empty lines computed)

1 次查看(过去 30 天)
Dear all, how i got the number of all lines in a txt file: full and empty ones
Thanks lots

采纳的回答

Ahmed A. Selman
Ahmed A. Selman 2013-4-7
Check this out:
E=textread('Your_File.txt','%s', 'delimiter', '\n');
% reads strings, white-space or delimiter-separated. Delete %s and use %d for
% numbers, %c for char, or %u for integers.
[a,b]=size(E);
% a has the number of lines, even empty ones.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Import and Analysis 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by