I need to get the content of the first p tag in a string (but without the actual tags).
Example:
<h1>I don't want the title</h1>
<p>This is the text I want</p>
<p>I don't want this</p>
<p>I also don't want this</p>
I guess I need to finde everything else and replace it with nothing? But how do I create the regex?