Hi,
I need to find any text between two characters except for new line. I know
that I can do A*B (To find anything between capital A and B using
wildcards). How do I say find anything except a return between A & B? I
tried A*[!^n]B but that, understandably, doesn't work.
Thank you.
Vince
Helmut Weber - 24 Nov 2004 08:47 GMT
Hi Vince,
how about this one:
.Text = "A[!^l^13]@B"
Any character but new line or paragraph mark.
---
Greetings from Bavaria, Germany
Helmut Weber, MVP
"red.sys" & chr(64) & "t-online.de"
Word 2002, Windows 2000
Vince - 25 Nov 2004 01:07 GMT
That's great, thanks!
Vince
> Hi Vince,
> how about this one:
[quoted text clipped - 5 lines]
> "red.sys" & chr(64) & "t-online.de"
> Word 2002, Windows 2000