How to check the numbers of characters of a string?
조회 수: 9 (최근 30일)
이전 댓글 표시
e.g I have a string, abcde. And I need a checker to check whether the string has 5 characters before executing a command.
댓글 수: 0
채택된 답변
Pedro Villena
2012년 10월 31일
편집: Pedro Villena
2012년 10월 31일
str = num2str([17;10],'%05i')
if length(str(1,:))==5,
%%%here is your command
end
or
str = num2str([17;10],'%05i')
if numel(str(1,:))==5,
%%%here is your command
end
댓글 수: 3
Matt Fig
2012년 10월 31일
Better to use NUMEL, for generality.
S = ['ertyu';'poiuy';'lkjhg';'nbvcx']
length(S)
numel(S)
추가 답변 (4개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!