PHP using regular expressions to verify the Chinese problem

Source: Internet
Author: User
Keywords Network programming PHP tutorial
Tags code echo failed network network programming php php tutorial programming

str = People's Republic of China 123456789abcdefg;
echo preg_match ("/ ^ [u4e00-u9fa5_a-zA-Z0-9] {3,15}", strName);

Run this code above to see if there is any message?
Warning: preg_match (): Compilation failed: PCRE does not support L, l, N, P, p, U, u, or X at offset 3 in F: wwwrootphptest.php on line 2

It turns out that 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 curly braces are strings that represent hexadecimal numbers. The original hexadecimal escape sequence xhh matches a double-byte UTF-8 character if its value is greater than 127.
So, you can solve preg_match ("/ ^ [x80-xff_a-zA-Z0-9] {3,15}", strName);

Related Article

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.