String match demo : String Matches : String PHP Source Code


PHP Source Code » String » String Matches »

 

String match demo



<?php
     $string = "Cats coat dog date dig daughter catagory";
     $pattern = "/cat|dog/";
   
     if(preg_match($pattern, $string))
          print("Found a match!");
?>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo String
» String Matches