The sequence of regular expressions negates the problem of surround-look

Source: Internet
Author: User
Tags php foreach
What I want to match is like this:

{% foreach $data $key $value %}233{% endforeach %}2333333{% foreach $data $key $value %}233{% endforeach %}

To match the contents of the first foreach, write a regular expression that looks like a

preg_match_all('/{%\s*foreach\s*(\$\S+)\s*(\$\S+)\s*(\$\S+)\s*%}((?!endforeach)[\s\S]*){%\s*endforeach\s*%}/i', $page, $match);

Because there are two foreach, so I used a negative look, that's the middle part

[\s\s]*]

    • -Match the results with no added (?! Endforeach), just started to look around--Daniel

Reply content:

What I want to match is like this:

{% foreach $data $key $value %}233{% endforeach %}2333333{% foreach $data $key $value %}233{% endforeach %}

To match the contents of the first foreach, write a regular expression that looks like a

preg_match_all('/{%\s*foreach\s*(\$\S+)\s*(\$\S+)\s*(\$\S+)\s*%}((?!endforeach)[\s\S]*){%\s*endforeach\s*%}/i', $page, $match);

Because there are two foreach, so I used a negative look, that's the middle part

[\s\s]*]

    • -Match the results with no added (?! Endforeach), just started to look around--Daniel

Do you want to imitate the implementation of the template engine?
I think what you want is to transform what you want to match into something like this:


  
    $value): ?>233
  
   

In this case, it should not be used to look around, it is easier to solve.

  • Related Article

    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.