PHP matches 6 to 16 character combinations (only numbers, letters, underscores)

Source: Internet
Author: User
This article describes a method that uses PHP to match 6-bit, 16-bit character combinations, which require only numbers, letters, and underscores. Refer to a friend who needs it.

Requirement: PHP matches 6 to 16 bits of string. Only 6 to 16 characters consisting of numbers, letters, and underscores are allowed, conforming to return ture, otherwise returning false.

Answer: 6 to 16 bits, the regular can be written like this: {6,16}. A regular expression of any character 6 to 16 bits is this:. {6,16} allows only a combination of numbers, letters, underscores, regular: [0-9_a-za-z] Integration, the complete regular is:

^[_0-9a-z]{6,16}$

The following is an example of applying this regular validation password.

     
     '; $password = ' abcdeasdas_1324 '; if (Ispassword ($password)) {echo ' matches ';} else {echo ' does not conform ';} Output  complies with?>
  • 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.