Help for this page

Select Code to Download


  1. or download this
    my @lengths = qw/1 20 20 5/;
    #inside some looplike thing
    ...
      push @array, substr( $line, 0, $_, '' ) for @lengths;
      print join "\t", @array;
    }
    
  2. or download this
    my @array= unpack 'a1a20a20a5', $line;