How can I trim a string(6) \" page\", where the first whitespace is a 0xc2a0 non-breaking space?
string(6) \" page\"
I\'ve tried trim() and preg_match(\'
trim()
preg_match(\'
Perhaps something from the multibyte string set of functions? http://php.net/manual/en/function.mb-ereg.php Can't see mb_trim, but there is a set of MB safe regex functions.
G