in reply to
Remove Duplicates from Array
hi, Try out this one
push(@newunique,grep {!$ss{$_}++} @unique);
[download]
In the above code of @newunique you will have only unique values of array.
Comment on
Re: Remove Duplicates from Array
Download
Code
In Section
Seekers of Perl Wisdom