in reply to front-pad a number with zero's

You can do the same thing with sprintf.
my $f=sprintf("%05d",123);
will put "00123" into $f.