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?
|
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? |
||||
|
|
|
adding a bit of explanation to Zed's answer: Erlang Format specification is: ~F.P.PadModC. (~4..0B~n) translates to
and ~n is new line. |
|||
|