Solution to the regular expression pattern modifier "e"

Source: Internet
Author: User
The regular expression pattern modifier "e" is used. I remember when I learned php, the teacher said "e" is used with preg_replace ($ reg, $ replace, $ text ). The replaced content ($ replace) can use the submode in regular $ reg, but the following code returns an error: PHPcode $ reg & quot; (d {2 }) (d {2}) (d {4}) e & quot; $ text regular pattern modifier "e"
I remember when I was learning php, the teacher said "e" is used with preg_replace ($ reg, $ replace, $ text ). The replaced content ($ replace) can use the submode in regular $ reg, but the following code reports an error:
PHP code
  $ Reg = "/(\ d {2}) \/(\ d {2}) \/(\ d {4})/e "; $ text = '2014/1/0 to 02/02/2009 '; $ replace = "\$ {3}, \$ {1}"; echo preg_replace ($ reg, $ replace, $ text); // error syntax error, unexpected ','


Delete the pattern modifier e in the regular expression and it will be okay. what is the problem?
What is the role of pattern modifier e?

------ Solution --------------------
PHP code
...... $ Replace = "'\ $ {3}, \ ${1 }'";......
------ Solution --------------------
If the e modifier is used in replace, the string (or the string in the array) is treated as the php code.
------ Solution --------------------
Example
Echo preg_replace ('/(\ d +), (\ d +)/E',' $1 + $ 2', '2, 3 ');
Output 5
------ Solution --------------------
Simply put, PHP regards the $ replace result as an expression calculation.

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.