Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Word / Programming / February 2005

Tip: Looking for answers? Try searching our database.

Macro to search for hyperlinks or email anc copy

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Justin - 06 Feb 2005 14:13 GMT
Hello,
I need a macro to search for email addresses in a word document, then copy
them into another word file with comma and space after each one.  
This is because I have a large file with email adresses throughout the file.
I then want to create a mailing list using these addresses.

Any ideas?
Doug Robbins - 06 Feb 2005 14:31 GMT
Macro to extract all of the email addresses from a document

Sub CopyAddressesToOtherDoc()

  Dim Source As Document, Target As Document, myRange As Range
   Set Source = ActiveDocument
   Set Target = Documents.Add

Application.ScreenUpdating = False

   Source.Activate
   Selection.HomeKey Unit:=wdStory
   Selection.Find.ClearFormatting
   With Selection.Find
Do While .Execute(findText:="[+0-9A-z._-]{1,}\@[A-z.]{1,}", _
MatchWildcards:=True, Wrap:=wdFindStop, Forward:=True) = True
           Set myRange = Selection.Range
           Target.Range.InsertAfter myRange & vbCr
       Loop
   End With

Selection.HomeKey Unit:=wdStory
Target.Activate

End Sub

Signature

Please respond to the Newsgroup for the benefit of others who may be
interested.   Questions sent directly to me will only be answered on a paid
consulting basis.

Hope this helps,
Doug Robbins - Word MVP

> Hello,
> I need a macro to search for email addresses in a word document, then copy
[quoted text clipped - 4 lines]
>
> Any ideas?
Justin - 06 Feb 2005 15:07 GMT
Thanks for your quick and accurate response.  It id very much appreciated

"

Rate this thread:






 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.