Php regular expressions do not contain a string sample code

Source: Internet
Author: User
Php regular expressions do not contain a string sample code
This article describes how to write a php regular expression that does not contain a certain string. a regular expression does not contain a specified string. For more information, see.

In php programming, strstr ($ str, "abc"), a common function that matches strings, and regular matching

Preg_match ("/(abc )? /Is ", $ str );

However, to match a string that does not contain a specific string, it is more difficult to use regular expressions! Strstr ($ str, "abc"); to solve the problem.

The naming rules can be as follows:

"/^ ((?! Abc).) * $/is"

Example:

Result: false, containing abc!

$ Str = "2b3c4d5c ";

Note: [^ (abc)] this syntax checks whether the characters in $ str are not in a B c one by one,

Preg_match ("/[^ (abc)]/s", $ str, $ arr );

The character 2 is not in a B c, so $ arr returns 2. it matches with the string "abc" and does not contain the string "xyz"

"/(Abc) [^ ((?! Xyz).) * $]/s"

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.