Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!bcm!dimacs.rutgers.edu!rutgers!soleil!mlb.semi.harris.com!harris.mlb.semi.harris.com!jdr From: jdr@harris.mlb.semi.harris.com (Jim Ray) Newsgroups: comp.lang.perl Subject: associative arrays of arrays Keywords: associative arrays Message-ID: <1991Feb21.051803.21302@mlb.semi.harris.com> Date: 21 Feb 91 05:18:03 GMT Sender: news@mlb.semi.harris.com Organization: Harris Semiconductor, Melbourne FL Lines: 19 Nntp-Posting-Host: harris.mlb.semi.harris.com I would like to build an associative array which in turn points to lists ( one per key ). Something like this: $array{$name} = SOME LIST Where SOME LIST is some array ( list ) of indices into another set of arrays containing relivant record information. This array would be periodically added to while traversing the entire list of people. $name is character string containing NAME I realize this has probably been discussed, but I don't have my PERL book yet. Any information would be helpful.