Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Building dynamic nested hash references

by broquaint (Abbot)
on Jan 21, 2004 at 11:15 UTC ( [id://322840]=note: print w/replies, xml ) Need Help??


in reply to Building dynamic nested hash references

Yes, it's generally best to avoid unnecessary eval STRING, so a simple iteration over the result of spliting the string should do it e.g
my $h = { 'misc' => {}, 'docs' => { 'howtos' => { 'email' => { 'index.html' => { 'date' => '21-1-2004', 'size' => '691' } }, 'ftp' => {}, 'ssh' => {} } } }; use Data::Dumper; print Dumper( find_hash($h,"/docs/howtos/email/") ); sub find_hash { my($tree, $path) = @_; my $n = $tree; for(grep length, split '/', $path) { return unless exists $n->{$_} and defined $n->{$_}; $n = $n->{$_}; } return $n; } __output__ $VAR1 = { 'index.html' => { 'date' => '21-1-2004', 'size' => '691' } };
That could probably do with a bit more data validation but it should illustrate, roughly, a saner approach to iterating through your nested hash.
HTH

_________
broquaint

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (5)
As of 2024-04-24 07:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found