a question about python regular expression.
I would like to match a div block like
<div class="leftTail"><ul class="hotnews">any news stuff</ul></div>
I was thinking a pattern like
p = re.compile(r'<div\s+class=\"leftTail\">[^(div)]+</div>')
but it seems not working properly
another pattern
p = re.compile(r'<div\s+class=\"leftTail\">[\W|\w]+</div>')
i got much more than i think, it gets all the stuff until the last tag in the file.
Thanks for any help

[^(div)]matches any character except 5 listed in brackets. Thus this won't work if any of them could occur in div content.\Wis an opposite for\w, so[\W|\w]is meaningless. The simplest way is to use non-greedy regexps like.+?. Consider using some real HTML parser if this is not the only task you are going to do with it. – Denis Otkidach Oct 9 '09 at 9:40