Strings Php

$s = 'A beautiful day';
preg_match_all ('/beaut[^ ]+/', $s, $matches);
var_dump ($matches)
?>