Hello,
I need to strip HTML tags from a string called "stockdata". I have come
up with ...
import re
.....
# Hack out the HTML tags to save room on the drive
rematch=re.compile('<[^>]*>')
stockdata=rematch.sub('',stockdata)
....
It works but seems a bit messy. Is there a neater way to do this ?
Dave