Help for this page

Select Code to Download


  1. or download this
    while (defined my $line = <IN>) { # read all data in one while(){}
     chomp $line; # remove \n from the end of the line
     next if $line eq ''; # skip empty lines
     ...
    }