method match in php code example
Example 1: php preg match space or start of string
/\b(stackoverflow)\b/
Example 2: preg_match in php
<?php
$my_text="I Love Regular Expressions";
$my_array = preg_split("/ /", $my_text);
print_r($my_array );
?>