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

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

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


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

//输出

北京欢迎您

分享文章:php正则去掉字符串中非汉字字符串
当前URL:http://scyanting.com/article/jjioig.html