<pre> <?php $string = "Hello Hella Haellowwweennn World"; preg_match("/(\w+)?ell(\w+)?/", $string, $matches); print_r($matches); ?> </pre>
Jump To Top of Thread