Php regular expression preg_replace

Source: Internet
Author: User
Tags mixed php regular expression regular expression
The code is as follows: Copy code
$ Mode = "/^ [a-z] [-_.]? [A-zd] * @ [a-z0-9] + [.] [a-z] {2, 4}/I ";
$ Str = "a12345@j111cn.net ";
Echo $ str. 'If (preg_match ($ mode, $ str, $ arr )){
Echo 'succeed -- <font color = red> '. $ arr [0];
} Else {
Echo 'failed ';
}

 


D contains all numbers [0-9]
D except all numbers [^ 0-9]
W contains all English characters [a-za-z_0-9]
W except all English characters [^ a-za-z_0-9]
S contains blank areas such as carriage return, line feed, and paging [fnr]


Preg_match_all (string pattern, string subject, array matches [, int flags])
Capture detailed content, collect webpages, and analyze text

The code is as follows: Copy code
Preg_replace (mixed pattern, mixed replacement, mixed subject [, int limit])
Preg_replace (mixed pattern, mixed replacement, mixed subject [, int limit])


Tip 1: The replacement content can be a regular or array regular
2. The replacement content can be replaced by the modifier e.

The code is as follows: Copy code
Preg_split (string pattern, string subject [, int limit [, int flags])

 

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.