Skip to content

Instantly share code, notes, and snippets.

@Me1000
Created April 18, 2010 23:49
Show Gist options
  • Select an option

  • Save Me1000/370624 to your computer and use it in GitHub Desktop.

Select an option

Save Me1000/370624 to your computer and use it in GitHub Desktop.
sub validIDString
{
while (length(@_[0]) < 5)
{
@_[0] = "0".@_[0];
}
return @_[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment