If i had the following text in a string:
<h4>Tom</h4>
<p>One Paragraph</p>
<p>Two Paragraph</p>
What code would i need to parse on that string to get an output like this (if i didnt know what was inside the <h4>
tag?
<p>One Paragraph</p>
<p>two Paragraph</p>
Thanks!