PHP does not contain a string sample code

Source: Internet
Author: User
This article describes the PHP regular does not contain a string of the wording, the regular expression does not contain the specified string example, the need for a friend reference.

In PHP programming, the common function of matching strings is strstr ($STR, "abc"); Regular match

Preg_match ("/(ABC)?/is", $STR);

But to match a string that does not contain a string, it is troublesome to use the regular!strstr ($STR, "abc"); can solve the problem.

Naming with a regular can be like this:

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

Example:

The result is: false, containing abc!

$str = "2b3c4d5c";

Note: [^ (ABC)] This syntax checks to see if the characters in $str are not in a B C,

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

Where character 2 is not in a B C, so the $arr return value is 2; Also matches, contains 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.