vote up 2 vote down star

How can I match (PCRE) everything inbetween two tags?

I tried something like this:

<!--\s*LoginStart\s*-->(.*)<!--\s*LoginEnd\s*-->

But it didn't work out too well for me..

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.

Thanks

flag

4 Answers

vote up 8 vote down check
$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>

explanations:

(.*?) = 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 -->'
link|flag
vote up 1 vote down

PHP and regex? Here's some suggestions:

'/<!--\s*LoginStart\s*-->(.*)<!--\s*LoginEnd\s*-->/Us'

Might be better - the U capitalized makes the regex non-greedy, which means it'll stop at the first

Depending on how certain you are on the capitalization, adding an i at the end will make the regex search case-insensitive.

link|flag
Can markdown be any more annoying? – John Fiala Nov 13 '08 at 19:51
vote up 0 vote down

I did not know about non-greedy matching, this will come in handy in the future. Thanks a lot guys.

link|flag
vote up 1 vote down

Yeah, I didn't know about the non-greedy thing either! Is there a site that explains each modifier?

link|flag
1  
regular-expressions.info is pretty in depth – Owen Nov 14 '08 at 6:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.