I want to parse a html content that have something like this:
<div id="sometext">Lorem<br> <b>Ipsun</b></div><span>content</span><div id="block">lorem2</div>
I need to catch just the "Lorem<br> <b>Ipsun</b>
" inside the first div. How can I achieve this?
Ps: the html inside the first div have multiple lines, its an article.
Thanks