PHP Regular Expressions Verify Chinese problems _ Regular expressions

Source: Internet
Author: User
$str = ' People's Republic of China 123456789ABCDEFG ';
Echo Preg_match ("/^[\u4e00-\u9fa5_a-za-z0-9]{3,15}$", $strName);

Run the code above to see what prompts?
Warning:preg_match (): compilation Failed:pcre does not support \l, \l, \ n, \p, \p, \u, \u, or \x at offset 3 in F:\wwwro Ot\php\test.php on line 2

Originally, the following Perl escape sequences are not supported in PHP regular expressions: \l, \l, \ n, \p, \p, \u, \u, or \x

In UTF-8 mode, "\x{...}" is allowed, and the content in curly braces is a string that represents a hexadecimal number. The original hexadecimal escape sequence, \xhh, matches a double-byte UTF-8 character if its value is greater than 127.
So, can solve Preg_match ("/^[\x80-\xff_a-za-z0-9]{3,15}$", $strName);
Copy Code code as follows:

<?php
$shouji = "haha haha";
if (!preg_match ("/^[\x80-\xff]{6,30}$/", $shouji)) {
echo "NoNoNo";
}
else {
echo "Yesyesyes";
}
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.