preg_replace is probably overkill for extracting such uniform fields, so I would recommend using something like this:
PHP Code:
$newArray[]=substr(strstr($each, ' '), 1);
Or using explode:
PHP Code:
$parts = explode(" ", $each);
$newArray[] = $parts[1];