Help for this page

Select Code to Download


  1. or download this
    next unless ( grep( /$name/, @names ));
    print "$name isnt in the array so continue";
    
  2. or download this
    if ( grep( /$name/, @names )) {
       print "name is in the array";
    }
    #but this doesnt suit my needs.