I'd probably use
or
because
will match single spaces as well and replace those with another single space.
PHP Code:
" *"
or
PHP Code:
" {2,}"
because
PHP Code:
" "
will match single spaces as well and replace those with another single space.