Strip HTML
Strip HTML from a string with this function. That basically explains it’s all!! Original Author: DoWnLoHo Code Public Function StripHTML(sHTML As String) As StringDim sTemp As String, lSpot1 As Long, lSpot2 As Long, lSpot3 As LongsTemp$ = sHTML$DolSpot1& = InStr(lSpot3& + 1, sTemp$, “<“)lSpot2& = InStr(lSpot1& + 1, sTemp$, “>”) If lSpot1& = lSpot3& Or lSpot1& < 1 Then… Read More »