Click here to Skip to main content
15,867,308 members
Articles / Desktop Programming / MFC
Article

An email collection program

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
11 Aug 20011 min read 68.3K   917   17   6
This is a small program that can extract email addresses from files that are not necessarily text files.

Sample Image - email_collect.gif

Introduction

This is a small program that can extract email addresses from files that are not necessarily text files.

The program works by opening the input file as a binary file. If an '@' sign is found in the file, the program "backs up" in the file to find the first character that could not be a valid email character.

Then, the email address is collected and stored in an array which is placed in memory. This process continues until the end of file is reached.

When the entire input file is read, the addresses are sorted in alphabetical order, and duplicate addresses are removed. Email addresses that are found in the file are shown in an edit box.

Additionally, a text file containing the same list is created (called emails.txt) in the root directory.

All enhancements and modifications are left to the creativity and imagination of the progrmamer.

Note: This program demonstrates the use of a very efficient sort algorithm. Also, this program shows beginning programmers how to allocate and free memory. Other items of potential interest show file positioning and removal of duplicate entries.

History

12 Aug 2001 - I incorporated a suggestion from a codeproject member, fixed a few bugs, and then made many improvements to the program. The program now can collect up to 250,000 email addresses per file.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
Scott Wenger
panther@coredcs.com

Comments and Discussions

 
GeneralMy vote of 5 Pin
xuplus18-Nov-10 22:26
xuplus18-Nov-10 22:26 
Questionhow to detect what files attached in the mail? Pin
vanta6-Feb-03 22:31
vanta6-Feb-03 22:31 
GeneralJBuilder 6 and reading Excel file Pin
fsy21-Sep-02 0:18
fsy21-Sep-02 0:18 
Generalloop unrolling Pin
Carel16-Jul-01 6:12
Carel16-Jul-01 6:12 
GeneralBad link Pin
xlam15-Jul-01 17:47
xlam15-Jul-01 17:47 
GeneralRe: Bad link Pin
Chris Maunder15-Jul-01 18:41
cofounderChris Maunder15-Jul-01 18:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.