Help for this page

Select Code to Download


  1. or download this
    while (<FILE)
    {
    ...
        # code here to check whether $char is one you want to tally...
        }
    }
    
  2. or download this
    my $u = unpack('U', $char);
    $tally{$char}++ if ($u > 128);