Calculating number in a string
2 次查看(过去 30 天)
显示 更早的评论
SampleText.txt
file = 'SampleText.txt';
any assitance would be much appriciated, thanks.
0 个评论
采纳的回答
Wan Ji
2021-8-30
Then do following code
for i = 1:1:nLines
fprintf('%d: %s\n',i,fileStr{i})
end
fprintf('This file has %d lines', nLines)
更多回答(1 个)
Mathieu NOE
2021-8-30
hello
you can add these lines to your code :
for ci = 1:nLines
if size(fileStr{ci})>0
disp([num2str(ci) ' : ' fileStr{ci}]);
end
end
1 个评论
Mathieu NOE
2021-8-30
FYI, the if statement line is to not display empty cells , but if you wish to have it, just remove that statement;
all the best
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Software Development Tools 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!