Hi,
I need to create a regex to extract 4 paragraphs of a text:
<p>
<b>Topic </b>–
abc
</p>
<p>abcd</p>
<p>abcde</p>
<p>abcdef</p>
<p>abcdefg</p>
I need to extract 4 paragraphs (text inside <p></p> including some html code) of this text using a regex.
How can I solve this problem ? I've tried a lot but I cant do this.
Thanks in advance.