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(\'
preg_replace('/^[\pZ\pC]+|[\pZ\pC]+$/u','',$str);