Grep在perl数组中查找项目

每当我输入代码总是告诉我它存在的东西.但我知道一些输入不存在.你能帮助我们什么是错的?
#!/usr/bin/perl

@array = <>;    
print "Enter the word you what to match\n";
chomp($match = <STDIN>);

if (grep($match,@array)) {
    print "found it\n";
}

解决方法

您给grep的第一个参数需要评估为true或false来指示是否有匹配.所以应该是:
# note that grep returns a list,so $matched needs to be in brackets to get the 
# actual value,otherwise $matched will just contain the number of matches
if (my ($matched) = grep $_ eq $match,@array) {
    print "found it: $matched\n";
}

如果您需要匹配很多不同的值,那么您也可以考虑将数组数据放入散列中,因为哈希允许您有效地执行此操作,而无需遍历列表.

# convert array to a hash with the array elements as the hash keys and the values are simply 1
my %hash = map {$_ => 1} @array;

# check if the hash contains $match
if (defined $hash{$match}) {
    print "found it\n";
}

相关文章

忍不住在 PerlChina 邮件列表中盘点了一下 Perl 里的 Web 应用框架(巧的是 PerlBuzz 最近也有一篇相关...
bless有两个参数:对象的引用、类的名称。 类的名称是一个字符串,代表了类的类型信息,这是理解bless的...
gb2312转Utf的方法: use Encode; my $str = "中文"; $str_cnsoftware = encode("utf-8...
  perl 计算硬盘利用率, 以%来查看硬盘资源是否存在IO消耗cpu资源情况; 部份代码参考了iostat源码;...
1 简单变量 Perl 的 Hello World 是怎么写的呢?请看下面的程序: #!/usr/bin/perl print "Hello W...
本文介绍Perl的Perl的简单语法,包括基本输入输出、分支循环控制结构、函数、常用系统调用和文件操作,...