in reply to Sort this data
my @LoH; { local $/="\n\n"; # may be "\r\n\r\n" under windows... while (<>) { my ($t, $a, $l) = split /\n/; push @LoH, { Title => $t, Author => $a, List => $l }; } }
I should probably have added this to the other post but I had just edited it like 5 times. =P
--
$you = new YOU;
honk() if $you->love(perl)
|
|---|