I think the weather alert has changed somewhat and i cant seem to strip out the html tags at the beginning and end of the alert does anyone have any ideas how to fix this
this is what i have in my script
resp=StripHTML(resp) 'strip the html tags
l=len(resp)
s=instr(resp, "National Weather Service")
resp=right(resp, l-s-25000) 'chop off the header
l=len(resp)
s=instr(resp, "Close this window")
resp=left(resp, l-s-6000) 'chop off the trailer
' resp = Replace(resp, vbNewLine, "") 'get rid of newlines, etc