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