Home >Backend Development >PHP Tutorial >How to use regular expressions to represent Chinese?_PHP Tutorial

How to use regular expressions to represent Chinese?_PHP Tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 10:52:49891browse

Because Chinese ASCII codes have a certain range. So you can use the following regular expression to represent Chinese.
/^[chr(0xa1)-chr(0xff)]+$/
The following is an example of usage:
$str = "Beyond PHP";
if (preg_match("/^ [".chr(0xa1)."-".chr(0xff)."]+$/", $str)) {
     echo "This is a pure Chinese string";
} else {
echo "This is not a pure Chinese string";
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632462.htmlTechArticleBecause the Chinese ASCII code has a certain range. So you can use the following regular expression to represent Chinese. /^[chr(0xa1)-chr(0xff)]+$/ Here is an example of usage: $str = beyond...
Statement:
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