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:
something@something.else
THIS DOES NOT MATCH:
<a href="mailto:someone@example.com?Subject=Hello%20again" target="_top">Send Mail</a>
Anyone? Thanks.