I'm trying to use the RegEx tool and I only want text between <p> and </p>
This equation will remove everything up to and including <p>
^[^_]*<p>
However, I still get </p> and all the other junk after that I don't want. Can anyone help?
I'm trying to use the RegEx tool and I only want text between <p> and </p>
This equation will remove everything up to and including <p>
^[^_]*<p>
However, I still get </p> and all the other junk after that I don't want. Can anyone help?