how to only have a certain amount of numbers in an input of as many characters and number that the user wants
조회 수: 3 (최근 30일)
이전 댓글 표시
prompt = 'Enter atleast 10 numbers: ';
str=0;
str = input(prompt,'s');
while length(str)~=10
str = input(prompt,'s');
end
that is the code that I'm using right now but I want the user to be able to input as many characters as they want but they can only enter 10 numbers. For example the user should be able to input:123we45ru687u90 but as long as it has ten numbers, the code will continue, no matter the amount of characters. Thank you!
댓글 수: 1
KSSV
2016년 10월 25일
You remove the while condition. Simply use
prompt = 'Enter atleast 10 numbers: ';
str = input(prompt,'s');
답변 (1개)
John Wirzburger
2016년 10월 25일
If they must enter exactly 10 numbers and any number of characters, I would change your code to
prompt = 'Enter at least 10 numbers: ';
str='0';
while length(regexp(str,'\d'))~=10
str = input(prompt,'s');
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Signal Generation and Preprocessing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!