Help for this page

Select Code to Download


  1. or download this
    print "Found it!\n" if (grep {/^I_am_looking_for_this$/o} @List);
    
  2. or download this
    my $Found=0;
    for (@List)
    ...
    };
    
    print "Found it!\n" if $Found;
    
  3. or download this
    sub IsInThere(@)
    {
    ...
    };
    
    print "Found it!\n" if IsInThere(@List);