Help for this page

Select Code to Download


  1. or download this
    my %count;
    while (<FH>) {
        $count{lc $_}++ for grep { !m{^[0-9]+(\.[0-9]+)?$} } m/\w+/g;
        }
    
  2. or download this
    $count{lc $_}++ for grep { !m{^[0-9]+$} } m/^\w+$/g;