I have text similar to 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
The problem is that when I use a simple regular expression like this ( <html>.*</p>), I get all the text until the last occurrence</p>
Can anybody help me?
thanks lennyd
source
share