Skip to content

Instantly share code, notes, and snippets.

@haldun
Created August 25, 2011 07:01
Show Gist options
  • Save haldun/1170131 to your computer and use it in GitHub Desktop.
Save haldun/1170131 to your computer and use it in GitHub Desktop.
ruby-1.9.3-preview1 :033 > s = "%06d" % 123
=> "000123"
ruby-1.9.3-preview1 :034 > s.chars.each_slice(4).map(&:join)
=> ["0001", "23"]
ruby-1.9.3-preview1 :035 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment