Last active
November 29, 2016 05:33
-
-
Save TomckySan/315650889c011094009edd0a3a74907d to your computer and use it in GitHub Desktop.
桁数指定ゼロ埋め
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# % (String) - https://docs.ruby-lang.org/ja/latest/class/String.html#I_--25 | |
puts "%02d" % 0 # 00 | |
puts "%02d" % 9 # 09 | |
puts "%02d" % 99 # 99 | |
puts "%02d" % 100 # 100 | |
puts "%04d" % 0 # 0000 | |
puts "%04d" % 9 # 0009 | |
puts "%04d" % 99 # 0099 | |
puts "%04d" % 100 # 0100 | |
puts "%04d" % 9999 # 9999 | |
puts "%04d" % 99999 # 99999 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment