Click here to Skip to main content
Click here to Skip to main content

Extracting EMail Addresses From a Document or String

By , 18 Jul 2003
 
<!-- Article Starts - DO NOT ADD HTML/BODY START TAGS--><!-- Download Links --> <!-- Add the rest of your HTML here -->

Introduction

This project shows how to extract email addresses from a document or string.

Background

I was listening to the most recent .NET Rocks where Carl Franklin mentioned an exercise he had in a class that asked the attendees to extract email addresses from a string. He said that the exercise took some people a couple hours to complete using VB 6.0 but I was just working with the System.Text.RegularExpressions namespace and I thought this would be quite easy in .NET.

Using the code

The sample application will open a Word Document, Rich Text Document, or Text File and give you all the email addresses contained within. It uses Word (late-bound so it's version independant) to open the .DOC or .RTF files.

The heart of the sample application is the method listed below. It uses the Regex.Matches method to search the string for matches to the regular expression provided. You then just need to enumerate the returned MatchCollection to extract the email addresses.

Perhaps the biggest challenge is to construct the proper regular expression for the search. I went to The Regular Expression Library to search for the one used here.

Imports System.Text.RegularExpressions
'.......................

Private Function ExtractEmailAddressesFromString(ByVal source As String) _
        As String()
    Dim mc As MatchCollection
    Dim i As Integer

    ' expression garnered from www.regexlib.com - thanks guys!
    mc = Regex.Matches(source, _ 
        "([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5})")
    Dim results(mc.Count - 1) As String
    For i = 0 To results.Length - 1
        results(i) = mc(i).Value
    Next

    Return results
End Function

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

About the Author

Rob Windsor
Web Developer
Canada Canada
Rob Windsor is an independent consultant and mentor based in Toronto, Canada. Rob focuses on the development of custom business applications using Microsoft technologies and is also an instructor for Learning Tree International where he teaches many of the courses in the .NET curriculum. Rob is a regular speaker at User Group meetings in the Toronto area and is President of the Toronto Visual Basic User Group (www.tvbug.com). Rob has been recognized as a Microsoft Most Valuable Professional (MVP) for his involvement in the developer community.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberMushtaque Nizamani18-Sep-10 12:46 
QuestionHow can I extract all emails of body email ??memberalhambra-eidos21-Oct-08 11:15 
GeneralIts amazing!!memberwmhp115-Apr-07 15:17 
Generalit helps to make utility to search for string in word filememberdigitaldxb12-Mar-07 22:39 
GeneralJust what I was looking for!memberfredde_d26-Feb-07 2:14 
Generalthanks a bunchmemberkalai_venkatesh20-Jan-06 1:47 
Hi,
Thanks a lot for your code.. I was facing the deadline of my oroject and breaking my head to find out a solution.. your code saved me my head..keep up the good work.. thanks a bunch
 
Warmest Regards,
 
Kalai
GeneralJust What I Was Looking FormemberGuru77777-Dec-05 9:19 
GeneralLegitimate UsesussAnonymous17-Sep-04 1:31 
GeneralGood code snippeteditorNishant S17-Sep-03 19:40 
GeneralMotivation for the articlememberRob Windsor22-Jul-03 15:56 
GeneralRe: Motivation for the articlememberRichard Day22-Jul-03 22:12 
GeneralRe: Motivation for the articlemembervsabhi5-Apr-10 6:04 
QuestionLegitimate Uses?memberRichard Day22-Jul-03 5:43 
AnswerRe: Legitimate Uses?sussAnonymous22-Jul-03 14:46 
GeneralRe: Legitimate Uses?memberRichard Day22-Jul-03 22:06 
AnswerRe: Legitimate Uses?memberGavin Harriss14-Dec-05 6:40 
GeneralBoo, and perhaps.... hiss...sussAnonymous21-Jul-03 12:00 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130617.1 | Last Updated 19 Jul 2003
Article Copyright 2003 by Rob Windsor
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid