Home > php教程 > php手册 > PHP正确匹配UTF-8中文的正则

PHP正确匹配UTF-8中文的正则

WBOY
Release: 2016-06-13 10:50:27
Original
1150 people have browsed it

直接上代码吧
2 $string="你好啊,hello world";
3 preg_match('~[\x{4e00}-\x{9fa5}]+~u', $string, $array);

5  
6 print_r ( $array );
打印结果:
1 Array
2 (
3     [0] => 你好啊
4 )
注意 :编码是UTF-8的哦 GBK的不是这样写的.
作者:yangqijun

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template