in reply to Re^6: Load a file into hash with duplicate keys
in thread Load a file into hash with duplicate keys

ok, then try:

my ($key, $val) = split /\t/, $line, 2;

Replies are listed 'Best First'.
Re^8: Load a file into hash with duplicate keys
by sophix (Sexton) on Nov 02, 2010 at 21:29 UTC
    Thank you, this works just fine.