@array=qw/2 3 7 5 34/; $no=13; if(grep {$_ == $no} @array) { print "Condition true"; } else { print "Condition false"; }