in reply to Re: Adding data to hashes & comparing
in thread Adding data to hashes & comparing
if (%data) { # We have data to process while( my ($key, $value) = each(%data) ) { if($key =~ '%{User-Agent}i\""') { $userAgent = $value; } if($key =~ '%t') { $date = $value; } } $aRequests = $hRequests{$date}{$userAgent}; push @$aRequests, \%data; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Adding data to hashes & comparing
by pileofrogs (Priest) on Apr 02, 2009 at 16:32 UTC |