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

Re: help with array of arrays

by PrimeLord (Pilgrim)
on Apr 01, 2002 at 02:06 UTC ( [id://155692]=note: print w/replies, xml ) Need Help??


in reply to help with array of arrays

You have to dereference the array values in order to access them. if you wanted to access all of the values of the arrays in the sorted array you could do something like this.

foreach (@sorted) { print "@{$_}\n"; }


That will give you each element in each array of their own line. HTH.

-Prime

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-03-28 22:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found