Logo

Programming-Idioms

History of Idiom 156 > diff from v5 to v6

Edit summary for version 6 by TheVTM:
[Rust] Fixed demo link

Version 5

2017-04-27, 10:38:26

Version 6

2017-04-29, 06:54:55

Idiom #156 Format integer with zero-padding

Assign to string s the value of integer i in 3 decimal digits. Pad with zeros if i < 100. Keep all digits if i1000.

Idiom #156 Format integer with zero-padding

Assign to string s the value of integer i in 3 decimal digits. Pad with zeros if i < 100. Keep all digits if i1000.

Extra Keywords
pad leading fixed width
Extra Keywords
pad leading fixed width
Code
let s = format!("{:03}", i);
Code
let s = format!("{:03}", i);
Doc URL
https://doc.rust-lang.org/std/fmt/
Doc URL
https://doc.rust-lang.org/std/fmt/
Demo URL
https://is.gd/XmMNIm
Demo URL
https://play.rust-lang.org/?gist=34875ee59c3814908cb9994d1bca4d3a&version=stable&backtrace=0