Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: How can I populate attributes of a hash into another ?

by Random_Walk (Prior)
on Jul 19, 2013 at 14:12 UTC ( [id://1045365]=note: print w/replies, xml ) Need Help??


in reply to How can I populate attributes of a hash into another ?

I would flip the data model around. One book may contain multiple chapters. They will also normally be sequentially numbered so I'd make an array of them.

#!/usr/bin/perl use strict; use warnings; my %book = ( name => 'ABC - an adventure', author => 'monk', isbn => '123-890', issn => '@issn', chapter => [], ); $book{chapter}[1] = { name => 'Testing Times', page => 2, }; $book{chapter}[2] = { name => 'Importing Hash', page => 99, }; print "$book{name}\n"; my $i = 1; while (exists $book{chapter}[$i]) { print "Ch: $i '$book{chapter}[$i]{name}' ($book{chapter}[$i]{page} +)\n"; $i++ }
Output:
ABC - an adventure Ch: 1 'Testing Times' (2) Ch: 2 'Importing Hash' (99)

Cheers,
R.

Pereant, qui ante nos nostra dixerunt!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (7)
As of 2024-04-23 08:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found