Match everything inbetween two tags with Regular Expressions? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T08:08:37Z http://stackoverflow.com/feeds/question/287991 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/287991/match-everything-inbetween-two-tags-with-regular-expressions 2 Match everything inbetween two tags with Regular Expressions? jamesk89 2008-11-13T19:40:22Z 2008-11-14T01:37:00Z <p>How can I match (PCRE) everything inbetween two tags?</p> <p>I tried something like this:</p> <blockquote> <p>&lt;!--\s&#42;LoginStart\s&#42;--&gt;(.*)&lt;!--\s&#42;LoginEnd\s&#42;--&gt;</p> </blockquote> <p>But it didn't work out too well for me..</p> <p>I'm kind of new to regular expressions, so I was hoping if someone would be kind enough to explain to me how I would accomplish this, if its even possible with regular expressions.</p> <p>Thanks</p> http://stackoverflow.com/questions/287991/match-everything-inbetween-two-tags-with-regular-expressions/288006#288006 1 Answer by John Fiala for Match everything inbetween two tags with Regular Expressions? John Fiala 2008-11-13T19:46:34Z 2008-11-13T20:08:20Z <p>PHP and regex? Here's some suggestions:</p> <pre><code>'/&lt;!--\s*LoginStart\s*--&gt;(.*)&lt;!--\s*LoginEnd\s*--&gt;/Us' </code></pre> <p>Might be better - the U capitalized makes the regex non-greedy, which means it'll stop at the first <p>Depending on how certain you are on the capitalization, adding an i at the end will make the regex search case-insensitive.</p> http://stackoverflow.com/questions/287991/match-everything-inbetween-two-tags-with-regular-expressions/288015#288015 8 Answer by Owen for Match everything inbetween two tags with Regular Expressions? Owen 2008-11-13T19:49:37Z 2008-11-13T19:49:37Z <pre><code>$string = '&lt;!-- LoginStart --&gt;&lt;div id="stuff"&gt;text&lt;/div&gt;&lt;!-- LoginEnds --&gt;'; $regex = '#&lt;!--\s*LoginStart\s*--&gt;(.*?)&lt;!--\s*LoginEnds\s*--&gt;#s'; preg_match($regex, $string, $matches); print_r($matches); // $matches[1] = &lt;div id="stuff"&gt;text&lt;/div&gt; </code></pre> <p>explanations:</p> <pre><code>(.*?) = non greedy match (match the first &lt;!-- LoginEnds --&gt; it finds s = modifier in $regex (end of the variable) allows multiline matches such as '&lt;!-- LoginStart --&gt;stuff more stuff &lt;!-- LoginEnds --&gt;' </code></pre> http://stackoverflow.com/questions/287991/match-everything-inbetween-two-tags-with-regular-expressions/288292#288292 0 Answer by jamesk89 for Match everything inbetween two tags with Regular Expressions? jamesk89 2008-11-13T21:03:23Z 2008-11-13T21:03:23Z <p>I did not know about non-greedy matching, this will come in handy in the future. Thanks a lot guys. </p> http://stackoverflow.com/questions/287991/match-everything-inbetween-two-tags-with-regular-expressions/288982#288982 1 Answer by for Match everything inbetween two tags with Regular Expressions? 2008-11-14T01:37:00Z 2008-11-14T01:37:00Z <p>Yeah, I didn't know about the non-greedy thing either! Is there a site that explains each modifier?</p>