|
This may get you going...
my %hash = map { $_ => 1 } @array;
my @array2 = sort keys %hash;
Where array2 is your unique array...
__________________
http://jasonpowers.net
"There are a thousand hacking at the branches of evil to one who is striking at the root."
|