Help for this page

Select Code to Download


  1. or download this
    $criteria = "(abc|123)\$";
    $teststring = "Foo walks up and says: abc";
    ...
    if ( $teststring =~ /$criteria/ ) {
          print "it worked!\n";
    }
    
  2. or download this
    $teststring =~ /($criteria)/