Help for this page

Select Code to Download


  1. or download this
    my @array;
    while(<$file>){
    ...
      tr/A-Z//d;
      push @array, [split /\s+/];
    }
    
  2. or download this
    my @array;
    while(my $line = <$file>){
    ...
      $line =~ tr/A-Z//d;
      push @array, [split /\s+/, $line];
    }