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!