in reply to Dynamically Building Variable Names
No, you probably don't want that. You want a real data structure, possibly a hash of hashes of arrays by your description.
my $data = { example => { other => [ ], } }; $data->{example}->{other}->[0] = "wuzzle";
See perldoc perlreftut and perldoc perldsc.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Dynamically Building Variable Names
by jhourcle (Prior) on Apr 22, 2005 at 17:37 UTC |