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

Re: Assignment of Arrays of Hashes

by physgreg (Scribe)
on Oct 14, 2002 at 09:55 UTC ( [id://205020]=note: print w/replies, xml ) Need Help??


in reply to Assignment of Arrays of Hashes

I modified the script to use Data::Dumper after the assignment to @content{@selector} and after the loop. Using the test data
test1 test2 test3 test4 test44 afsd wfsdf sdfsd
I got the output
$VAR1 = 'field1'; $VAR2 = 'test1'; $VAR3 = 'field2'; $VAR4 = 'test2'; $VAR5 = 'field3'; $VAR6 = 'test3'; $VAR7 = 'field4'; $VAR8 = 'test4';
after the first assignment, so the hash is indeed being set up correctly. After the loop, my RefHash was set to
$VAR1 = { 'field1' => 'test1', 'field2' => 'test2', 'field3' => 'test3', 'field4' => 'test4' }; $VAR2 = { 'field1' => 'test44', 'field2' => 'afsd', 'field3' => 'wfsdf', 'field4' => 'sdfsd' };
so it appears that the push worked. Perhaps your problem is to do with the way that you are trying to access the array elements? I was able to access it with
print $RefHash[0]{'field2'},"\n";

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (3)
As of 2024-04-19 17:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found