I'm trying to create a regex that takes all the content from <div class="entrytext"> to the first </p> next to this div class.
At the moment this is what I have:
(?<=<div class="entrytext">.*<p>).*(?></p>)
Is going well cause all the code above this div is not matching, but the issue that I'm having is after this <div> there are a lots of </p> in the document.
What I would like is to take all the content next this div but until the first </p> found.
Could you give me a hand? Thanks in advance.