Help for this page

Select Code to Download


  1. or download this
    if (grep $_ == $x, @array)
    {
        print "Found $x in the array!\n";
    }
    
  2. or download this
    if (grep /^$x$/, @array){
       ...
    }