How can I extract e-mail, from this email:
Email <a href=""mailto:[email protected]"">[email protected]</a>
My Regex
(?<=Email)(.*)(?=<\/)
So far I was able to discard word Email and the 'a' closing tag (</a>
) to this:
<a href=""mailto:[email protected]"">[email protected]
But how can I remove the 'a' opening tag along with href (<a href=""mailto:[email protected]"">
) and only be left with the email?
Thanks