in reply to HoH question
while(<DATA>){ chomp; my ($user, $email, $result) = split /\s+/, $_, 3; $hash{$user}{email} = $email; $hash{$user}{result} = $result; } [download]