http://qs321.pair.com?node_id=514409


in reply to Re: array processing
in thread array processing

I preferred a regex over a split since we are only getting the user out of the data and we don't need any of the other values. You can increment the user's login count in one line inside the while loop:
$users{$1}++ if $line =~ /Login succeeded. User: (\w+)/i;