in reply to Logic for elimination of duplicate values from an array in perl for windows platform
my %hash; my @array; foreach my $Item (@array){ $hash{$Item} ++; } foreach my $key (keys %hash) { # key is the values that would be in your new array } [download]