But suppose the user enters "The gross national product of England averages 2,378,111,228 pounds per day."
???
That is a 10 digit number that looks like a phone number. What would you have the system do with it?
Or what would you do about "My phone number is eight zero zero five five five one two one two." ???
Anyway, if you simply want to reject all digits, I gave you the answer in the first post, excepting that you should remove the \s in there.
If you want to zap all digits, just use
Code:
Set re = New RegExp
re.Pattern = "\d"
re.Global = True
txt = re.Replace( txt, "" )