in reply to round up digits in numbers

You want the printf function.

For example:

#! /usr/bin/perl -w use strict; use diagnostics; my $n=42; printf "%05d\n", $n;
See sprintf for details of the first argument to printf.