Help for this page

Select Code to Download


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