Help for this page

Select Code to Download


  1. or download this
    my $test = 123;
    while (length($test) < 5) {
      $test = '0' . $test;
    }
    
  2. or download this
    my $test = 123;
    $test = ('0' x (5-length($test))) . $test;