Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: Grouping of 2D arrays

by Anonymous Monk
on Apr 20, 2017 at 17:08 UTC ( [id://1188440]=note: print w/replies, xml ) Need Help??


in reply to Re: Grouping of 2D arrays
in thread Grouping of 2D arrays

my @array; $array[0] = 1; $array[1] = 'PC BOX'; $array[2] = '20,0'; my @array1; $array1[0] = [ $array[0], $array[1], $array[2] ]; $array[0] = 1; $array[1] = 'PC Spare'; $array[2] = '32,0'; $array1[1] = [ $array[0], $array[1], $array[2] ]; $array[0] = 1; $array[1] = 'PC Spare'; $array[2] = '5,2'; $array1[2] = [ $array[0], $array[1], $array[2] ]; $array[0] = 1; $array[1] = 'PE Ak'; $array[2] = '100,0'; $array1[3] = [ $array[0], $array[1], $array[2] ];

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (4)
As of 2024-04-24 17:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found