Page is a not externally linkable
streetshirts - 11:45 am on Jul 23, 2004 (gmt 0)
Use this function to remove all html from a string Function RemoveHTML( strText ) Set RegEx = New RegExp RegEx.Pattern = "<[^>]*>" RemoveHTML = RegEx.Replace(strText, "")
Tom,
Dim RegEx
RegEx.Global = True
End Function