Friday, March 18, 2016

Notepad++ Email address finder

Since NONE of search results here gave me exactly how to FIND email addresses from a set of text, here's what I came up with, in Regular Expressions:

\w*@\w*
Yes, it's that simple. Just throw that into Find What field and watch the magic happen.

This code is only useable in HTML documents. For non-HTML coded "non-Ampersand" ones, use this:

\w*@\w*

No comments:

Post a Comment