Help for this page

Select Code to Download


  1. or download this
    %hash = {'match1'=> 1;
        'match2' => 1;
    ...
            ## do something
        }
    }
    
  2. or download this
    open (FILE, "<$file") or die $!;
    @file = <FILE>;
    foreach $row (@file) {
        ## do something with $row
    }