Help for this page

Select Code to Download


  1. or download this
    while (<FILE>) {
        @zapschool = split (/\t/);
    ...
            print NEWFILE "$zapschool[4]\n";        
        }
    }
    
  2. or download this
    while (<FILE>) {
        if (m/zaps/i) {
    ...
            print NEWFILE "$zapschool[4]\n";        
        }
    }
    
  3. or download this
    while (<FILE>) {
        if (m/zaps/i) {
    ...
            print NEWFILE "$zapschool\n";        
        }
    }
    
  4. or download this
    my %count;
    
    ...
    foreach (keys(%count)) {
       print NEWFILE "$_: $count{$_}\n";        
    }