Match everything inbetween two tags with Regular Expressions? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T08:08:37Zhttp://stackoverflow.com/feeds/question/287991http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/287991/match-everything-inbetween-two-tags-with-regular-expressions2Match everything inbetween two tags with Regular Expressions?jamesk892008-11-13T19:40:22Z2008-11-14T01:37:00Z
<p>How can I match (PCRE) everything inbetween two tags?</p>
<p>I tried something like this:</p>
<blockquote>
<p><!--\s*LoginStart\s*-->(.*)<!--\s*LoginEnd\s*--></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#2880061Answer by John Fiala for Match everything inbetween two tags with Regular Expressions?John Fiala2008-11-13T19:46:34Z2008-11-13T20:08:20Z<p>PHP and regex? Here's some suggestions:</p>
<pre><code>'/<!--\s*LoginStart\s*-->(.*)<!--\s*LoginEnd\s*-->/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#2880158Answer by Owen for Match everything inbetween two tags with Regular Expressions?Owen2008-11-13T19:49:37Z2008-11-13T19:49:37Z<pre><code>$string = '<!-- LoginStart --><div id="stuff">text</div><!-- LoginEnds -->';
$regex = '#<!--\s*LoginStart\s*-->(.*?)<!--\s*LoginEnds\s*-->#s';
preg_match($regex, $string, $matches);
print_r($matches); // $matches[1] = <div id="stuff">text</div>
</code></pre>
<p>explanations:</p>
<pre><code>(.*?) = non greedy match (match the first <!-- LoginEnds --> it finds
s = modifier in $regex (end of the variable) allows multiline matches
such as '<!-- LoginStart -->stuff
more stuff
<!-- LoginEnds -->'
</code></pre>
http://stackoverflow.com/questions/287991/match-everything-inbetween-two-tags-with-regular-expressions/288292#2882920Answer by jamesk89 for Match everything inbetween two tags with Regular Expressions?jamesk892008-11-13T21:03:23Z2008-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#2889821Answer by for Match everything inbetween two tags with Regular Expressions?2008-11-14T01:37:00Z2008-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>