Help for this page

Select Code to Download


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