Help for this page

Select Code to Download


  1. or download this
       while (my $elements[20] = <INFILE>) {
            substr $elements, 7, 0, ' ';
            }
    
  2. or download this
    substr $elements[20], 7, 0, '  ';
    
  3. or download this
    @ARGV or die "Usage: $0  input-file output-file\n";