Skip to content

Instantly share code, notes, and snippets.

@civet
Created June 28, 2013 06:31
Show Gist options
  • Save civet/5882872 to your computer and use it in GitHub Desktop.
Save civet/5882872 to your computer and use it in GitHub Desktop.
pad Zeroes
package
{
public function zeroPad(number:int, width:int):String {
var result:String = ""+number;
while( result.length < width ) result = "0" + result;
return result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment