This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

PHP RegEx

Using preg_match_all()

4

<?php
// define string
$str = "The rain in SPAIN falls mainly on the plains.";

// do a case-insensitive count of the number of occurrences of "ain" in a string
$pattern = "/ain/i";

// display the number of times the results of the search are found or "0" for none
echo preg_match_all($pattern, $str);
?>