Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

(tye)Re: varying length multi-dimensional hashes

by tye (Sage)
on Oct 04, 2000 at 23:29 UTC ( [id://35317]=note: print w/replies, xml ) Need Help??


in reply to varying length multi-dimensional hashes

Okay, here is one way to populate the hash:

#!/usr/bin/perl -w use strict; my %hash; while( <> ) { chomp $_; my @trib= grep { "" ne $_ } split /(...)/, $_; my $ref= \\%hash; while( @trib ) { $ref= \$$ref->{shift @trib}; } $$ref++; }

Note how I avoided having to save shift @trib to index into the next subhash by keeping a reference to the slot for the hash value instead of a reference to the hash.

If that code makes sense to you right away, then you are either sick, overlooking something, or do way too much work with Perl references. (:

P.S. I was seriously disappointed that

my @trib= split /(?<=\G...)/, $_;
doesn't work because split doesn't set pos($_) the way /(?<=\G...)/g would.

        - tye (but my friends call me "Tye")

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://35317]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (2)
As of 2024-04-25 21:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found