How can I include leading zeros in a number?

347 Ansichten (letzte 30 Tage)
Brock Chelle
Brock Chelle am 6 Okt. 2017
Kommentiert: Stephen23 am 11 Jan. 2024
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?

Antworten (2)

Cedric
Cedric am 6 Okt. 2017
Bearbeitet: Cedric am 6 Okt. 2017
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 Kommentare
Real User
Real User am 11 Jan. 2024
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 am 11 Jan. 2024
"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'

Melden Sie sich an, um zu kommentieren.


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

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by