I need to clean a string that comes (copy/pasted) from various Microsoft Office suite applications (Excel, Access, and Word), each with its own set of encoding.
I\'m
Try this:
$str = str_replace("\u{00a0}", ' ', $str);