PHP regular expression PHP regular function _ PHP Tutorial

Source: Internet
Author: User
Tags ereg preg
PHP regular expressions: regular functions in PHP. My PHP regular expression entry is an article on the internet. This article explains the PHP regular expression method in a simple way. I think it is a good entry-level material, but my PHPThe entry to regular expressions is originated from an article on the internet. This article explains from a simple perspective how to use PHP regular expressions. I think it is a good entry material, but it depends on the individual to learn it, in the process of use, I still forget it. Therefore, I read this article four or five times repeatedly. it may take a long time to digest some of the difficult knowledge points, however, as long as you can continue reading the regular expression, you will find that your use of regular expressions will significantly improve.

PHP regular expression definition:

A syntax rule used to describe character arrangement and matching modes. It is mainly used for string mode segmentation, matching, search and replacement operations.

Regular functions in PHP:

PHP has two sets of regular functions, which have similar functions:

One set is provided by the PCRE (Perl Compatible Regular Expression) library. Functions with the prefix "prefix;

A set of extensions provided by POSIX (Portable Operating System Interface of Unix. Use a function named with the prefix "ereg _". (POSIX regular expression library is not recommended since PHP 5.3 and will be removed from PHP6)

Since POSIX regular expressions are coming soon, and the PCRE and perl forms are similar, it is more conducive to switching between perl and php, so here we will focus on the use of PCRE regular expressions.

PCRE regular expression

PCRE is called Perl Compatible Regular Expression, which means Perl is Compatible with Regular expressions.

In PCRE, a pattern expression (that is, a regular expression) is usually included between two backslash "/", such as "/apple /".

There are several important concepts in regular expressions: metacharacters, escaping, pattern units (duplicates), assignees, references, and assertions, these concepts can be easily understood and mastered in article [1.

Frequently used metacharacters (Meta-character ):

Metacharacters

A matches the atom at the beginning of A string.

Z matches the atoms at the end of a string.

B matches the boundary of the word/bis/string with the matching header "is"/isb/string with the matching tail "is"/bisb/boundary

B matches any character except word boundary/Bis/Matches "is" in the word "This"

D. match a number. it is equivalent to [0-9].

D. match any character except a number. it is equivalent to [^ 0-9].

W matches an English letter, number, or underline. it is equivalent to [0-9a-zA-Z _]

W matches any character except English letters, numbers, and underscores. it is equivalent to [^ 0-9a-zA-Z _].

S matches a blank character; equivalent to [ftv]

S matches any character except the white space. it is equivalent to [^ ftv]

F matching a page feed is equivalent to x0c or cL

Match a line break; equivalent to x0a or cJ

Matching a carriage return is equivalent to x0d or cM.

T matches a tab. it is equivalent to x09 or cl.

V matches a vertical tab. it is equivalent to x0b or ck.

ONN matches an octal number.

XNN matches a hexadecimal number.

CC matches a control character

Pattern Modifiers ):

Pattern delimiters are used in case-insensitive and multi-row Matching. these delimiters often solve many problems.

I-matching uppercase and lowercase letters at the same time

M-treat strings as multiple rows

S-treats a string as a single line, and line breaks are treated as common characters so that "." matches any character.

The white space in X-mode is ignored.

U-match to the nearest string

E-use the replaced string as the expression

Format:/apple/I matches "apple" or "Apple", and case insensitive. /I

PCRE mode unit:

// 1. extract the first attribute

/^ D {2} ([W]) d {2} \ 1d {4} $ matches strings such as "12-31-2006", "09/27/1996", and "86 01 4321. However, the above regular expression does not match the "12/34-5678" format. This is because the result "/" of the mode "[W]" has been stored. When the next position is "1", the matching mode is also the character "/".

When you do not need to store matching results, use the non-storage mode Unit "(? :)"

For example /(? : A B c) (D E F) \ 1g/will match "aEEg ". In some regular expressions, it is necessary to use non-storage mode units. Otherwise, you need to change the subsequent reference sequence. The preceding example can also be written as/(a B c) (C E F) 2g /.

PCRE regular expression function:

Preg_match () and preg_match_all ()
Preg_quote ()
Preg_split ()
Preg_grep ()
Preg_replace ()

For specific functions, we can find them in the PHP Manual. Below are some accumulated regular expressions:

Matching action attributes

$ Str = '';
$ Match = '';
Preg_match_all ('/s + action = "(?! Http :)(.*?) "S/', $ str, $ match );
Print_r ($ match );

Use callback in regular expressions

/**
* Replace some string by callback function
*
*/
Function callback_replace (){
$ Url = 'http: // esfang.house.sina.com.cn ';
$ Str = '';
$ Str = preg_replace ('/(? <= Saction = ")(?! Http :)(.*?) (? = "S)/E', 'search ($ url, \ 1) ', $ str );

Echo $ str;
}

Function search ($ url, $ match ){
Return $ url. '/'. $ match;
}

Regular Expression Matching with assertions

$ Match = '';
$ Str = 'xxxxxx .com.cn bold font
Paragraph text

';
Preg_match_all ('/(? <= <(W {1})> ).*(? = )/', $ Str, $ match );
Echo "matches the content in HTML tags without attributes :";
Print_r ($ match );

Replace the address in the HTML source code

$ Form_html = preg_replace ('/(? <= Saction = "ssrc =" shref = ")(?! Http: javascript )(.*?) (? = "S)/e ', 'Add _ url ($ url,' \ 1') ', $ form_html );

Finally, although the regular expression tool is powerful, in terms of efficiency and writing time, sometimes it may not be as direct as explode. for some urgent or less demanding tasks, A simple and crude method may be better.

For the execution efficiency between the preg and ereg series, I have seen the article saying that preg is a little faster, because there are not many ereg instances, and we have to launch the stage of history, I am not doing this because I am more inclined to add a person than PCRE. if you are familiar with it, you can make comments. thank you.


The entry to the PHP regular expression is an article on the internet. This article explains the PHP regular expression method from a simple perspective. I think it is a good entry material,...

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.