Help for this page

Select Code to Download


  1. or download this
    snip...
       my @row = split(/;/, $array[$_]);
    ...
          print "Empty line at: $_\n";
       }
    snip...
    
  2. or download this
    open(IN, "$file") || die "Cant open $file\nReason: $!\n";
    
    ...
          print "Empty line in $file at line: $.\n";
       }
    }