Calculating number in a string
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
SampleText.txt
file = 'SampleText.txt';
any assitance would be much appriciated, thanks.
0 Commenti
Risposta accettata
Wan Ji
il 30 Ago 2021
Then do following code
for i = 1:1:nLines
fprintf('%d: %s\n',i,fileStr{i})
end
fprintf('This file has %d lines', nLines)
Più risposte (1)
Mathieu NOE
il 30 Ago 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 Commento
Mathieu NOE
il 30 Ago 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
Vedere anche
Categorie
Scopri di più su Software Development Tools in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!