Ruby 整数位数不足,前面补0

我的原文所在 http://yanmin.in/archive.html

irb> "%05d" % 12345
"12345"
irb> "%05d" % 12
"00012"

你可能感兴趣的:(Ruby 整数位数不足,前面补0)