Help for this page

Select Code to Download


  1. or download this
    my $string = 'TEST';
    $string .= '0000';
    
  2. or download this
    $string .= '0' x ($fixed_length - length $string);