in reply to Assign and print Hash of hashes
This is how I would do that, with Data::Dumper output for comparison.
#!/usr/bin/perl -w use strict; use warnings; use Data::Dumper; open my $fh, '<', $ARGV[0] or die $!; my @lines = <$fh>; close $fh; my %data; for my $line (@lines) { my @fields; @fields = split /\s+/, $line; $data{$fields[1]}{$fields[0]} = $fields[2]; } for my $key (keys %data) { print "$key = $data{$key}\n"; for my $subkey (keys %{$data{$key}}) { print "\t$subkey = $data{$key}{$subkey}\n"; } } print Dumper(\%data);
Here is a sample run and the data.
my@mybox:~/sandbox $ ./2.pl data.txt jones = HASH(0x40017524) jenny = circle ted = circle knight = HASH(0x4001738c) ted = triangle $VAR1 = { 'jones' => { 'jenny' => 'circle', 'ted' => 'circle' }, 'knight' => { 'ted' => 'triangle' } }; my@mybox:~/sandbox $ cat data.txt ted jones square ted jones circle ted knight triangle jenny jones circle
The key differences from Perl Best Practices :
I did, violate the "Prefer line-based I/O to slurping," rule because we both know the sample data is tiny.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Assign and print Hash of hashes
by sundeep (Acolyte) on Nov 22, 2010 at 17:30 UTC | |
by jffry (Hermit) on Nov 23, 2010 at 16:28 UTC |