change dates separation symbols

A

a453

Hi all


I have a document with lots of dates written in the format DD.MM.YY..

I would like to automatically change all of them to DD/MM/YY.


Something like DD/MM/YY ---> if you have a 8 character string and the
sequnce of charcater is (1to3)(0to9) "."(0to1)(0to9) etc ?
 
G

Graham Mayor

Are we to assume that the dates are inserted as text and not fields? If they
are text then you can use replace with the wildcard option set to replace
([0-9]{2}).([0-9]{2}).([0-9]{2})
with
\1/\2/\3
http://www.gmayor.com/replace_using_wildcards.htm

If they are fields, let us know what type of fields.
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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

Top