Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Easy way to remove HTML entities from an HTML document?

4 views
Skip to first unread message

Robert Oschler

unread,
Jul 25, 2004, 3:50:11 PM7/25/04
to
Is there a module/function to remove all the HTML entities from an HTML
document (e.g. - &nbsp, &amp, &apos, etc.)?

If not I'll just write one myself but I figured I'd save myself some time.

Thanks,
--
Robert


Robert Brewer

unread,
Jul 25, 2004, 4:21:18 PM7/25/04
to pytho...@python.org
Robert Oschler wrote:
> Is there a module/function to remove all the HTML entities
> from an HTML document (e.g. - &nbsp, &amp, &apos, etc.)?

Grab cleanhtml.py from the bottom of
http://www.aminus.org/rbre/python/index.html -- you should be able to
quickly rewrite the Plaintext class and just limit it to replacing (or
removing) entities--at least the regex is already written for you.

HTH!


Robert Brewer
MIS
Amor Ministries
fuma...@amor.org

Christopher T King

unread,
Jul 25, 2004, 5:30:22 PM7/25/04
to
On Sun, 25 Jul 2004, Robert Oschler wrote:

> Is there a module/function to remove all the HTML entities from an HTML
> document (e.g. - &nbsp, &amp, &apos, etc.)?

htmllib has this capability, but if you're not doing any other HTML
parsing, a regex, coupled with htmllib's helper module, htmlentitydefs,
does nicely:

import re
import htmlentitydefs

def convertentity(m):
if m.group(1)=='#':
try:
return chr(int(m.group(2)))
except ValueError:
return '&#%s;' % m.group(2)
try:
return htmlentitydefs.entitydefs[m.group(2)]
except KeyError:
return '&%s;' % m.group(2)

def converthtml(s):
return re.sub(r'&(#?)(.+?);',convert,s)

converthtml('Some &lt;html&gt; string.') # --> 'Some <html> string.'

Unknown or invalid entities are left in &xxx; format, while also leaving
Unicode entities in &#nnn; format. If you want a Unicode string to be
returned (and Unicode entities interpreted), replace 'chr' with 'unichr',
and 'htmlentitydefs.entitydefs[m.group(2)]' with
'unichr(htmlentitydefs.name2codepoint[m.group(2)])'.

Hope this helps.

Michael Scarlett

unread,
Jul 25, 2004, 11:47:04 PM7/25/04
to
"Robert Oschler" <no_replies@fake_email_address.invalid> wrote in message news:<X9UMc.12838$QO....@bignews5.bellsouth.net>...


check out mark pilgrims site: http://diveintopython.org/html_processing/index.html

Robert Oschler

unread,
Jul 26, 2004, 6:08:44 PM7/26/04
to
"Christopher T King" <squi...@WPI.EDU> wrote in message
news:Pine.LNX.4.44.040725...@ccc6.wpi.edu...

>
> htmllib has this capability, but if you're not doing any other HTML
> parsing, a regex, coupled with htmllib's helper module, htmlentitydefs,
> does nicely:
>
> import re
> import htmlentitydefs
>
> def convertentity(m):
> if m.group(1)=='#':
> try:
> return chr(int(m.group(2)))
> except ValueError:
> return '&#%s;' % m.group(2)
> try:
> return htmlentitydefs.entitydefs[m.group(2)]
> except KeyError:
> return '&%s;' % m.group(2)
>
> def converthtml(s):
> return re.sub(r'&(#?)(.+?);',convert,s)
>
> converthtml('Some &lt;html&gt; string.') # --> 'Some <html> string.'
>
> Unknown or invalid entities are left in &xxx; format, while also leaving
> Unicode entities in &#nnn; format. If you want a Unicode string to be
> returned (and Unicode entities interpreted), replace 'chr' with 'unichr',
> and 'htmlentitydefs.entitydefs[m.group(2)]' with
> 'unichr(htmlentitydefs.name2codepoint[m.group(2)])'.
>
> Hope this helps.
>

Chris,

I believe the line that reads:

def converthtml(s):
return re.sub(r'&(#?)(.+?);',convert,s)

Should read:

def converthtml(s):
return re.sub(r'&(#?)(.+?);',convertentity,s)

Once I made that change it worked like a charm. I'm showing the correction
for future Usenet searchers.

So you can pass a function to re.sub() as the replacement patttern? Very
cool, I didn't know that. I think you could spend a year just learning
regular expressions and still miss something.


Thanks,
Robert.


Christopher T King

unread,
Jul 27, 2004, 9:23:59 AM7/27/04
to
On Mon, 26 Jul 2004, Robert Oschler wrote:

> I believe the line that reads:
>
> def converthtml(s):
> return re.sub(r'&(#?)(.+?);',convert,s)
>
> Should read:
>
> def converthtml(s):
> return re.sub(r'&(#?)(.+?);',convertentity,s)

Oops, you're right, mea culpa :)

> So you can pass a function to re.sub() as the replacement patttern? Very
> cool, I didn't know that. I think you could spend a year just learning
> regular expressions and still miss something.

That feature is only mentioned briefly in the online docs, and not at all
in sre.sub's docstring. Surprising, since it's indeed a very useful
feature.

Robert Oschler

unread,
Jul 27, 2004, 1:40:44 PM7/27/04
to
"Christopher T King" <squi...@WPI.EDU> wrote in message
news:Pine.LNX.4.44.04072...@ccc1.wpi.edu...

>
> That feature is only mentioned briefly in the online docs, and not at all
> in sre.sub's docstring. Surprising, since it's indeed a very useful
> feature.
>

Chris,

Speaking of learning cool things by osmosis, do you know of a well commented
source of Python code, perhaps an Open Source project, that I could study to
learn more interesting techniques like the regexp tip you shared? I find
that studying other people's code is the best way to avoid getting in a
programming rut.

Thanks.

--
Robert

Christopher T King

unread,
Jul 29, 2004, 12:13:03 PM7/29/04
to
On Tue, 27 Jul 2004, Robert Oschler wrote:

> Speaking of learning cool things by osmosis, do you know of a well commented
> source of Python code, perhaps an Open Source project, that I could study to
> learn more interesting techniques like the regexp tip you shared? I find
> that studying other people's code is the best way to avoid getting in a
> programming rut.

I seem to recall reading about that re.sub trick in something linked from
Pythonware's Daily Python URL (http://www.pythonware.com/daily/). There
are often links there to interesting and useful code snippets from
ActiveState's Python Cookbook and other sources; I'd say start there if
you want to find neat tricks you can do with Python.

I'm not sure of any particularly "well commented" Python projects though
(I've never really looked into that), but you'll probably find some
interesting small projects in the Vaults of Parnassus
(http://www.vex.net/parnassus/).

Robert Oschler

unread,
Jul 30, 2004, 6:33:54 PM7/30/04
to

"Christopher T King" <squi...@WPI.EDU> wrote in message
news:Pine.LNX.4.44.040728...@ccc3.wpi.edu...

>
> I seem to recall reading about that re.sub trick in something linked from
> Pythonware's Daily Python URL (http://www.pythonware.com/daily/). There
> are often links there to interesting and useful code snippets from
> ActiveState's Python Cookbook and other sources; I'd say start there if
> you want to find neat tricks you can do with Python.
>
> I'm not sure of any particularly "well commented" Python projects though
> (I've never really looked into that), but you'll probably find some
> interesting small projects in the Vaults of Parnassus
> (http://www.vex.net/parnassus/).
>

Thanks Chris and thanks for all your other help.

With your Python skill you should work for Google. Too bad you don't, you'd
be a wealthy man soon (Google IPO). Wish I did. :)

--
Robert


Christopher T King

unread,
Jul 30, 2004, 10:03:25 PM7/30/04
to
On Fri, 30 Jul 2004, Robert Oschler wrote:

> With your Python skill you should work for Google. Too bad you don't,
> you'd be a wealthy man soon (Google IPO). Wish I did. :)

Thanks for the compliment. :) To work at Google is my dream job, and I'm
sure that of many others on this list, too (makes me wonder if any Google
employees read this list...).

0 new messages