PHP提取字符串中的所有汉字

已邀请:
匿名用户

匿名用户

赞同来自:

使用preg_match_all函数通过正则表达式即可提取出字符串中的所有汉字:
<?php
$str = 'aiezu.com 爱E族, baidu.com 百度';
preg_match_all("#[\x{4e00}-\x{9fa5}]#u", $str, $match);
print_r($match[0]);
输出结果:
Array
(
    [0] => 爱
    [1] => 族
    [2] => 百
    [3] => 度
)

要回复问题请先登录注册