Is it possible to find all <p>
tabs in a string and replace them with <br>
tabs?
For example, if I have a string which looks like this:
<p>some test here</p>
<p>some more test here</p>
<p>some other test here</p>
Is it possible to change it to the following:
some test here<br /><br />
some more test here<br /><br />
some other test here<br /><br />