/ Published in: ASP
quick way to strip the rtf data so you have clean text
Expand |
Embed | Plain Text
Function RemoveRTF(rtfText) set regexObject = New RegExp With regexObject .Pattern = "({\\)(.+?)(})|(\\)(.+?)(\b)" .IgnoreCase = True .Global = True End With RemoveRTF = Replace(regexObject.Replace(rtfText, ""),"}", "") End Function
You need to login to post a comment.
