- or download this
($firstLetter)= ($file_name=~ /^(.)/);
push(@{$hash{uc($firstletter)}}, $infoline);
- or download this
$hash{'A'} -> [ infolineA1, infolineA2 ... ]
$hash{'B'} -> [ infolineB1, infolineB2 ... ]
- or download this
foreach $letter (sort keys %hash) {
print $letter;
...
print $infoline;
}
}