Help for this page

Select Code to Download


  1. or download this
    if  (!($_ =~ /$search/))  {  
       print "\nsubstring <$search> NOT found\n";
    }
    
  2. or download this
    my $found;
    my $counter;
    ...
    {
      print "\nsubstring <$search> NOT found\n";
    }