dayton has asked for the wisdom of the Perl Monks concerning the following question:
Should output:@array=( ["def","456","$%^"], ["abc","123","!@#"], ["ghi","789","&*("] ); #code to sort the aoa here for $i ( 0 .. $#array ) { print "$array[$i][0]\n"; }
--
Ah, thanks! So simple yet I couldn't figure it out.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Sorting an AoA?
by FunkyMonk (Bishop) on Feb 12, 2008 at 18:54 UTC | |
|
Re: Sorting an AoA?
by kyle (Abbot) on Feb 12, 2008 at 18:57 UTC | |
|
Re: Sorting an AoA?
by sh1tn (Priest) on Feb 13, 2008 at 00:17 UTC |