kdmurphy001 has asked for the wisdom of the Perl Monks concerning the following question:
while (my $line=<FILE>) { chomp($line); my ($IacIsbn, $Title, $EPI, $BundleCode) = split("\t",$line); %IACISBN_ENUM = ( $IacIsbn => { 'Title' => $Title, 'EPI' => $EPI, 'Bundle' => $BundleCode } ); } close FILE;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Hash of Hashes not filling - only using last line of file
by fullermd (Vicar) on Feb 22, 2013 at 07:54 UTC | |
|
Re: Hash of Hashes not filling - only using last line of file
by 7stud (Deacon) on Feb 22, 2013 at 08:04 UTC | |
|
Re: Hash of Hashes not filling - only using last line of file
by poolpi (Hermit) on Feb 22, 2013 at 08:10 UTC | |
|
Re: Hash of Hashes not filling - only using last line of file
by Bloodnok (Vicar) on Feb 22, 2013 at 11:31 UTC |