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

Re: How to better represent a complex data structure.

by muba (Priest)
on Jan 08, 2013 at 16:26 UTC ( [id://1012277]=note: print w/replies, xml ) Need Help??


in reply to How to better represent a complex data structure.

my %main_file=( USER <= \@user_file, TEST <= \@test_file, TRIM <= \@trim_file, );

Obviously you mean => there ;)

Like this?
push(@{$main_file{"USER"}[0]}, $string);

Have you tried it? Did it fail you?

> perl -Mstrict -MData::Dumper -wE ' my %main_file = ( USER => [ [], [], [] ] ); push @{$main_file{"USER"}[0]}, "string ;)"; print Dumper \%main_file; ' $VAR1 = { 'USER' => [ [ 'string ;)' ], [], [] ] }; >

Replies are listed 'Best First'.
Re^2: How to better represent a complex data structure.
by Amblikai (Scribe) on Jan 08, 2013 at 17:17 UTC

    I have tried it roughly, but the mess of code i wrote quickly grew out of hand so i wrote the above to try to simplify it in my head and to simplify the question!

    Thanks for you reply.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-19 19:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found