PHP programming skills: Learn regular expressions from examples

Source: Internet
Author: User

First, let's take a look at two special characters: '^' and '$'. They are used to match the start and end of the string respectively. The following are examples:

"^ The": matches strings starting with ";

"Of despair $": match the string ending with "of despair;

"^ Abc $": matches strings starting with abc and ending with abc. In fact, only abc matches;

"Notice": matches a string containing notice;

You can see that if you do not use the two characters we mentioned (the last example), that is, the pattern (Regular Expression) can appear anywhere in the string to be tested, you didn't lock him to either side.

How many characters *, +, and ?, They are used to indicate the number or sequence of occurrences of a character. They represent "zero or more", "one or more", and "zero or one." Here are some examples:

"AB *": matches strings a and 0 or more B ("a", "AB", "abbb", etc .);

"AB +": Same as above, but at least one B ("AB", "abbb", etc .);

"AB? ": Matches 0 or 1 B;

"? B + $ ": match the string ending with one or zero a plus more than one B.

You can also limit the number of characters in braces, such

"AB {2}": Match a and a with two B (one cannot be less) ("abb ");

"AB {2,}": at least two B ("abb", "abbbb", etc .);

"AB {3, 5}": 2-5 B ("abbb", "abbbb", or "abbbbb ").

You must also note that you must always specify (I. e, "{0, 2}", not "{, 2}"). Similarly, you must note that, *, +, and? They are the same as the following three range Annotations: "{0,}", "{1,}", and "{0, 1 }".

Put a certain number of characters in parentheses, for example:

"A (bc) *": match a with 0 or a "bc ";

"A (bc) {}": one to five "bc ."

There is also a character │, which is equivalent to the OR operation:

"Hi │ hello": Match string containing "hi" or "hello;

"(B │ cd) ef": matches strings containing "bef" or "cdef;

"(A │ B) * c": match a string that contains multiple (including 0) a or B strings followed by a c;

A vertex (.) can represent all single characters:

"A. [0-9]": a string with a character and a number (a string containing such a string will be matched, and this bracket will be omitted later)

"^. {3} $": ends with three characters. The content enclosed in brackets only matches a single character.

"[AB]": Match a or B (same as "a │ B );

"[A-d]": match a single character from a to d (same effect as "a │ B │ c │ d" and "[abcd );

"^ [A-zA-Z]": matches a string starting with a letter.

"[0-9] %": match a string containing x %

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.