php教程 正則匹配unicode 編碼正則方法,因為unicode編碼的特殊性,所以一般的中文或英文正則是不能正確取到我們想要的內容的,下面來看一款專業的unicode正則表達式吧。
看個unicode編碼圖。
$words = "0123456789abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrsruvwxyz!@#$%^&*()_+-=[],./{}|<>?'"你好啊我們";
$otherstr=preg_replace("//[x{0080}-x{00ff}]+/iu"," ",$words);
echo 'otherstr:',$otherstr;