Calculating number in a string
Ältere Kommentare anzeigen
SampleText.txt
file = 'SampleText.txt';
any assitance would be much appriciated, thanks.
Akzeptierte Antwort
Weitere Antworten (1)
Mathieu NOE
am 30 Aug. 2021
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 Kommentar
Mathieu NOE
am 30 Aug. 2021
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
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!