in reply to Using map and grep to Sort one list using another list
my @result = map { my $key = $_; grep m/^\d\|\d\|\d\|$key\|\d$/, @records } @keys +;
-M
Free your mind
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Using map and grep to Sort one list using another list
by AntsPants (Novice) on Feb 05, 2007 at 13:52 UTC | |
|
Re^2: Using map and grep to Sort one list using another list
by shmem (Chancellor) on Feb 05, 2007 at 14:05 UTC | |
by johngg (Canon) on Feb 05, 2007 at 14:17 UTC | |
by Moron (Curate) on Feb 05, 2007 at 15:26 UTC |