Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to pad the output of an integer to a given length.

For example, with a length of 4 digits, the output of the integer 4 is "0004" instead of "4". How can I do this in Erlang?

share|improve this question

3 Answers

io:format("~4..0B~n", [Num]).

share|improve this answer

adding a bit of explanation to Zed's answer:

Erlang Format specification is: ~F.P.PadModC.

(~4..0B~n) translates to

~F. = ~4.  (Field width of 4)
P.  = .    (no Precision specified)
Pad = 0    (Pad with zeroes)
Mod =      (no control sequence Modifier specified)
C   = B    (Control sequence B = integer in default base 10)

and ~n is new line.

share|improve this answer
You can add explanation to that answer instead of adding another answer. This will help improve that question and help others more. – Coral Doe Oct 26 '12 at 6:56

string:right(integer_to_list(4), 4, $0).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.