数组 – 使用Perl检查数据数组中的重复项最有效的方法是什么?

前端之家收集整理的这篇文章主要介绍了数组 – 使用Perl检查数据数组中的重复项最有效的方法是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要看一下字符串数组中是否存在重复项,最有效的方法是什么?

解决方法

我喜欢Perl的事情之一就是能够像英语一样读书。这只是一种有意义的东西。
use strict;
use warnings;

my @array = qw/yes no maybe true false false perhaps no/;

my %seen;

foreach my $string (@array) {

    next unless $seen{$string}++;
    print "'$string' is duplicated.\n";
}

产量

'false' is duplicated.

'no' is duplicated.

猜你在找的Perl相关文章