Help for this page

Select Code to Download


  1. or download this
    if (!($string =~ /keyword/)) { print "match failed"; }
    
  2. or download this
    unless ($string =~ /keyword/) { print "match failed"; }
    
  3. or download this
    if ($string !~ /keyword/) { print "match failed"; }