Help for this page

Select Code to Download


  1. or download this
    my @txtfile;
    while (<$fh>) {
       chomp;
       push @txtfile, $_;
    }
    
  2. or download this
    chomp @txtfile;