Help for this page

Select Code to Download


  1. or download this
    @tmp = <FILE>;
    foreach $line (@tmp) {
      chop $line;
    ...
    foreach $key (keys %HASH) {
      print "<some html>$key - $HASH{$key}</some html>\n";
    }
    
  2. or download this
    while (<FILE>) {
        m/(^.*)\t(.*$)/;
        print "<some html>$1 - $2</some html>\n";
    }