HoHoH

2007-01-09 Thread oryann9
I have a HoHoH structure that looks like after running print Dumper (\%hash); 'prlhNSSA' => { '1499' => { 'gecos' => 'First Name Last Name,CIS,location,

Re: HoHoH

2007-01-09 Thread Dave Gray
On 1/9/07, oryann9 <[EMAIL PROTECTED]> wrote: I have a HoHoH structure that looks like after running print Dumper (\%hash); 'prlhNSSA' => { '1499' => { 'gecos&#x

Re: HoHoH

2007-01-09 Thread John W. Krahn
oryann9 wrote: > I have a HoHoH structure that looks like after running print Dumper (\%hash); > > 'prlhNSSA' => { > '1499' => { > 'gecos' => 'First Name Last Name,CIS,location, > 'ho

Re: HoHoH

2007-01-09 Thread oryann9
> my question is how do I access and print all values? I am trying: > > foreach (keys %dub_hash) { > print %{$dub_hash->{$name}->{$uid}->{%gid}->{$gecos} }; > } > > Do I need three loops? What am I doing wrong? Yup, three loops. I'll get you started: for my $name (keys %dub_hash) { for my $u

Re: HoHoH

2007-01-09 Thread John W. Krahn
Dave Gray wrote: > > Yup, three loops. I'll get you started: > > for my $name (keys %dub_hash) { >for my $uid (keys %{$dub_hash{$name}}) { > # do stuff, note the %{...} above to force precedence Parentheses () are used for precedence, %{} dereferences the reference contained in $dub_ha

Sorting on HoHoH

2006-09-07 Thread Hardly Armchair
Hello List, I have a data structure like so: %p_mod = { 'A' => { 'fingers' => { '4' => 'ABSFMQS', '5' => 'SMTFQNL', }, 'name'=> '8-H34'

HoH and HoHoH

2007-01-11 Thread oryann9
ame, $p, $uid, $gid, $gecos, $dir, $s ) = split( ':' ); $hash1{$name} -> {'uid'} = $uid; $hash1{$name} -> {'gid'} = $gid; $hash1{$name} -> {'gecos'} = $gecos; HoHoH -- $VAR1 = { 'jblow' =>

HoH and HoHoH

2007-01-11 Thread oryann9
ame, $p, $uid, $gid, $gecos, $dir, $s ) = split( ':' ); $hash1{$name} -> {'uid'} = $uid; $hash1{$name} -> {'gid'} = $gid; $hash1{$name} -> {'gecos'} = $gecos; HoHoH -- $VAR1 = { 'jblow' =>

HoH and HoHoH

2007-01-12 Thread oryann9
ame, $p, $uid, $gid, $gecos, $dir, $s ) = split( ':' ); $hash1{$name} -> {'uid'} = $uid; $hash1{$name} -> {'gid'} = $gid; $hash1{$name} -> {'gecos'} = $gecos; HoHoH -- $VAR1 = { 'jblow' =>

Re: Sorting on HoHoH

2006-09-07 Thread John W. Krahn
Hardly Armchair wrote: > Hello List, Hello, > I have a data structure like so: > > %p_mod = { ^ You are using the wrong punctuation. That would produce a warning if you had warnings enabled. > 'A' => { > 'fingers' => { > '

Re: Sorting on HoHoH

2006-09-08 Thread Hardly Armchair
John W. Krahn wrote: Hardly Armchair wrote: Hello List, Hello, I have a data structure like so: %p_mod = { ^ You are using the wrong punctuation. That would produce a warning if you had warnings enabled. Sorry. I'm actually generating this data structure dynamically and just

Re: Sorting on HoHoH

2006-09-08 Thread Rob Dixon
Hardly Armchair wrote: > > Hello List, > > I have a data structure like so: > > %p_mod = { > 'A' => { > 'fingers' => { > '4' => 'ABSFMQS', > '5' => 'SMTFQNL', >}, >