Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Pushing at Array of Arrays

by djantzen (Priest)
on Feb 25, 2005 at 01:41 UTC ( [id://434335]=note: print w/replies, xml ) Need Help??


in reply to Pushing at Array of Arrays

$item is getting set to 'A', 'B' and 'C' because you're sorting the hashkeys. The warning indicates that letters are invalid array indexes. The real problem here however is that you're getting correct behavior in this case accidentally, perhaps perl is trying to be DWIMy. As an experiment, try declaring @data like:

my @data = ([],[ '17-02-2005','18-02-2005','19-02-2005', '20-02-2005','21-02-2005','22-02-2005', '23-02-2005','24-02-2005' ]);
You'll find that perl is simply pushing the arrays in your hashtable onto the first embedded array that it finds. The solution therefore is not to use the output of your sorting routine to identify the array you wish to push to.


"The dead do not recognize context" -- Kai, Lexx

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-04-24 11:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found