Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First, I'm not a regex expert, so I'm pretty sure I'm doing something wrong.

Here is my regular expression:

<(list)(\b[^>]*)>(<\1\b[^>]*>.*?<\/\1>|.)*?<\/\1>

This is the input string:

...
<list title="Lorem ipsum dolor sit amet, consectetur adipiscing elit...">
<li>
    <list title="Lorem adipiscing...">
        <li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>
        <li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>
    </list>
</li>
<li>
     <list title="Lorem ipsum...">
        <li>Lorem ipsum dolor sit amet, consectetur adipiscing elit</li>
    </list>
</li>
<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit
</li>
<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit
</li>
</list>
...

I want to match the external <list> and catch all the content including the intertal <list> but when I try to read the group \3 is empty althoug groups \1 and \2 are fine.

Any ideas would be very much appreciated.

share|improve this question
12  
The problem with your regex is that you're using it to parse HTML. – cletus Aug 17 '10 at 3:58
3  
To clarify cletus' answer (which is the correct answer for this question): stackoverflow.com/questions/1732348/… – Borealid Aug 17 '10 at 4:00
3  
...now you have two problems. /since we're bring out the cliches. – dmckee Aug 17 '10 at 4:01
I know it looks similar but I'm afraid is XML. And the question is not about the benefits/drawbacks of parsing HTML/XML with regex. Thanks – Freddy Aug 17 '10 at 4:03

1 Answer

up vote 6 down vote accepted

This problem cannot be solved with a regular expression match. Seriously. I'm not just repeating the "don't parse HTML with regex" dogma; regular expressions are logically incapable of handling nested tags (which is why everyone says "don't parse HTML with regex")

The best idea I can give you is to use an XML parser. If you insist on solving this problem using regular expressions, you will wind up writing your own recursive-descent parser anyway, so you might as well take advantage of the work others have done on that problem already.

share|improve this answer
Thanks for taking the time of not just saying "you can't". – Freddy Aug 17 '10 at 4:14
You're welcome... you didn't seem to be convinced by the comments, so I figured a bit of explanation might help. – David Zaslavsky Aug 17 '10 at 4:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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