Function CleanTags(HTML As String) As String 'PURPOSE: Clean HTML tags except the paragraph, weblinks and title ' You can comment out if you want these to supress these as well ' The instructions are given at the spots. ' SOURCE: Unknown and AutarKaw.org Dim result As String, StripIt As Boolean, c As String, i As Long HTML = TextFile_PullData() 'StripIt is used to figure out to include or exclude in output StripIt = False 'Looking at each character in the HTML file For i = 1 To Len(HTML) 'c is each character c = Mid(HTML, i, 1) 'Some conditions to take care for end of input file If i <= Len(HTML) - 1 Then 'd is last two characters of file to capture and

e = Mid(HTML, i, 4) Else e = "" End If 'Checking for < character that begins an HTML tag If c = "<" Then StripIt = True 'Comment this if you want to strip paragraphs If d = "