http://qs1969.pair.com?node_id=313923


in reply to HTML <=> Text convertion

if you just want to strip tags and convert entities:
s/<.*?>//g; s/&gt;/>/g; s/&lt;/</g; s/&apos;/'/g; s/&quot;/"/g/; s/&amp;/&/g;
may do the trick