in reply to Re^3: perl regex extraction from a large input filein thread perl regex extraction from a large input file
You could store the data as an array rather than hash, only change the one line to
push @{$results{$pass}{$case_req}}, $url; [download]