Help for this page

Select Code to Download


  1. or download this
    while(<FILE>)
    {
            @Array1 = <FILE>;
    }
    
  2. or download this
    my @arr;
    while ( <$fh> )
    ...
        chomp;
        push @arr, $_;
    }
    
  3. or download this
    my @arr = <$fh>;
    chomp @arr;
    
  4. or download this
    chomp( my @arr = <$fh> );