Help for this page

Select Code to Download


  1. or download this
    while ($line ne ""){
            chomp($line);
    
  2. or download this
    while ( $line = <FILE> ) {
        chomp $line;
        next if $line eq "";
        #...... do your stuff here
    } # end of while loop.