Help for this page

Select Code to Download


  1. or download this
    my $address = "$strnum $strname $strtype $strdir";
    $address =~ s/\s+/ /g;
    $address .= ' ' while length $address < 37;
    
  2. or download this
    my $address = sprintf '%-37.37s', "$strnum $strname $strtype $strdir" 
    +=~ s/\s+/ /rg;