My problem is, that this:
preg_replace(\'/(?<=\\>)\\b\\w*\\b|^\\w*\\b/\', \'$&\', $string);
Does not work and
$string = 'an example'; echo preg_replace('/^\b(.+?)\b/i', '$1', $string); // an example