Help for this page

Select Code to Download


  1. or download this
    $padded = sprintf("%${pad_len}s", $text);
    
  2. or download this
    $padded = sprintf("%04d", $text);
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    my $padded2 = sprintf("%${pad_len}s", $string2);
    
    print "|$padded1|\n|$padded2|\n";
    
  4. or download this
    |     12345|
    |1234567890|