Help for this page

Select Code to Download


  1. or download this
    Use of uninitialized value in concatenation (.) or string at x.pl line
    + 47.
    Use of uninitialized value in concatenation (.) or string at x.pl line
    + 47.
    ...
    
  2. or download this
    $w_columns{$w_col_ix} = "$w_columns{$w_col_ix}${w_pad}${w_char}";
    
  3. or download this
    $w_columns{$w_col_ix} .= "${w_pad}${w_char}";
    
  4. or download this
    use strict;
    use warnings;
    ...
        @_ =  map { ($")x($p||2),$_ } @$x;
        map { map { print substr($_, 0, 1, "") || $" } @_; print $/ } 1..$
    +m
    }
    
  5. or download this
    sub rows_to_cols {
        my ($x, $p, $j) = @_;
    ...
        ##
        # This does the magic horizontal to vertical conversion
    }