首页 > 代码库 > php 正则去掉字符串中非汉字字符串

php 正则去掉字符串中非汉字字符串

$str=‘2016,北京欢迎您 from around you..‘;

preg_match_all(‘/[\x{4e00}-\x{9fff}]+/u‘, $str, $matches);


$str = join(‘‘, $matches[0]);

//输出

北京欢迎您


本文出自 “刘庆辉” 博客,请务必保留此出处http://liuqh.blog.51cto.com/10044913/1864928

php 正则去掉字符串中非汉字字符串