필터 지우기
필터 지우기

How can I include leading zeros in a number?

조회 수: 692 (최근 30일)
Brock Chelle
Brock Chelle 2017년 10월 6일
댓글: Stephen23 2024년 1월 11일
I've created a code that requires the user to input a number of their choice. Their number must follow a set of rules, the first being that it must be 6 digits otherwise an error message occurs.
If the user types a number such as 012345, MatLab discards the zero and counts it as a 5 digit number (12345). If I would like MatLab to understand that this is actually a 6-digit number, how would i go about that?

답변 (2개)

Cedric
Cedric 2017년 10월 6일
편집: Cedric 2017년 10월 6일
Store/read the user input as a string.
Or, if you want to bring some flexibility, allow users to enter integers without leading zeros, but then when it becomes important to use/display them with leading zeros, print them on 6 digits with a 0 padding:
n = 12 ; % Stored or entered by user.
n_strPadded = sprintf( '%06d', n ) ;
with that you get:
n_strPadded =
'000012'
  댓글 수: 4
Real User
Real User 2024년 1월 11일
Great except that it counts the minus sign as one "zero". Thus, sprintf('%06d', n) works if n>=0 but sprintf('%07d', n) if n<0. Is there any way to say that I want 6 numbers whether n<0 or not?
Stephen23
Stephen23 2024년 1월 11일
"Is there any way to say that I want 6 numbers whether n<0 or not?"
I guess you mean digits, not numbers. Here are two approaches:
n = +4;
sprintf('%0*d',(n<0)+6,n)
ans = '000004'
n = -4;
sprintf('%0*d',(n<0)+6,n)
ans = '-000004'
OR
n = +4;
sprintf('%+07d',n)
ans = '+000004'
n = -4;
sprintf('%+07d',n)
ans = '-000004'

댓글을 달려면 로그인하십시오.


Walter Roberson
Walter Roberson 2018년 5월 8일
Use input with the 's' option, and test for length() 6 and that it contains only digits.

카테고리

Help CenterFile Exchange에서 String에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by