Find/Replace email addresses

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a F/R coding that can tell Word to identify all different email
address strings in a document of the form:

(e-mail address removed)

and change them to

<[email protected]>

I.e., identify "first-part-of-string" @ "last-part-of-string"

TIA
 
Yes it's possible, but not (I think) all in one go --

([a-z0-9.]@)\@([a-z0-9.]@.[a-z]{3}.[a-z]{2}) matches (e-mail address removed)
([a-z0-9.]@)\@([a-z0-9.]@.[a-z]{3}) matches (e-mail address removed)

In both cases, use <\1@\2> as the replacement. You need to check 'Use
wildcards'.
 
Try Edit>Replace>More>Use Wildcards.

Type: <*\@*>.*> in the find field. Click hte Format button>Style>Hyperlink

Replace with <^&>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top