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