Email Parser

A form and downloadable script that parses the emails from a list of email addresses and names (or any text actually). This problem came up during work and for a quick solution, I made an html file that parses the input and looks for email addresses. For those interested in regular expressions, the parsing is done with the .match function in javascript using the following pattern: /[a-zA-Z\d\._\-]+@[a-zA-Z\d\.\-]+\.[a-zA-Z]{2,4}/ This pattern is suitable for this task but not the best, other more complex patterns are available to handle every possible email but this one will do for now.

Parse Email Addresses

List of Emails

Separator

Parse


Posted

in

by

Tags: