I have text similar like this:
<html><p>this is <b>the</b> text</p> and <p>this is another text</p></html>
and I need to get this text using regexp
this is <b>the</b> text
Problem is, when I use simple regexp like this (<html>.*</p>
) I'm getting whole text until the last occurence of </p>
Can anyone help me?
thanks lennyd