in reply to
front-pad a number with zero's
You can do the same thing with sprintf.
my $f=sprintf("%05d",123);
[download]
will put "00123" into $f.
Comment on
Re: front-pad a number with zero's
Download
Code
In Section
Cool Uses for Perl