Given a text with email addresses I would like to match all the ones that are not wrapped inside an "a" tag. And I can only do it with a regex.
THIS MATCH:
[email protected]
THIS DOES NOT MATCH:
<a href="mailto:[email protected]?Subject=Hello%20again" target="_top">Send Mail</a>
Anyone? Thanks.