Help for this page

Select Code to Download


  1. or download this
    $tofind = "some string";
    
    ...
    foreach (@clist) {
        print "Found $tofind\n", last if($tofind =~ /$_/);
    }