Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim fso, f, RE, str
Const ForReading = 1, ForWriting = 2
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.OpenTextFile("c:\temp.txt", ForReading)
str = f.ReadAll
f.Close
Set RE = New RegExp
RE.Pattern = "<[^<]+>": RE.Global = True
str = RE.Replace(str, "")
Set f = fso.OpenTextFile("c:\temp.txt", ForWriting, True)
f.Write str
f.Close
NickC111 said:...the script works but the output file is blank.
Function ClearHTMLTags(strHTML, intWorkFlow)
'grab the function written by Johann
End Function