Because regular expressions scare me, I'm trying to find a way to remove all HTML tags and resolve HTML entities from a string in Python.
|
|
Use lxml which is the best xml/html library for python.
And if you just want to sanitize the html look at the lxml.html.clean module |
||
|
|
|
|
Actually the link to Dive Into Python should be this |
||
|
|
|
|
Looking at the amount of sense people are demonstrating in other answers here, I'd say that using a regex probably isn't the best idea for your situation. Go for something tried and tested, and treat my previous answer as a demonstration that regexes need not be that scary. |
||
|
|
|
|
Regular expressions are not scary, but writing your own regexes to strip HTML is a sure path to madness (and it won't work, either). Follow the path of wisdom, and use one of the many good HTML-parsing libraries. Lucas' example is also broken because "sub" is not a method of a Python string. You'd have to "import re", then call re.sub(pattern, repl, string). But that's neither here nor there, as the correct answer to your question does not involve writing any regexes. |
||
|
|
|
|
Use BeautifulSoup! It's perfect for this, where you have incoming markup of dubious virtue and need to get something reasonable out of it. Just pass in the original text, extract all the string tags, and join them. |
||
|
|
|
|
You might need something more complicated than a regular expression. Web pages often have angle brackets that aren't part of a tag, like this:
Stripping the tags with regex will return the string "5 " and treat
as a single tag and strip it out. I suggest looking for already-written code that does this for you. I did a search and found this: http://zesty.ca/python/scrape.html It also can resolve HTML entities. |
||
|
|
|
|
While I agree with Lucas that regular expressions are not all that scary, I still think that you should go with a specialized HTML parser. This is because the HTML standard is hairy enough (especially if you want to parse arbitrarily "HTML" pages taken off the Internet) that you would need to write a lot of code to handle the corner cases. It seems that python includes one out of the box. You should also check out the python bindings for TidyLib which can clean up broken HTML, making the success rate of any HTML parsing much higher. |
||
|
|
|
|
How about parsing the HTML data and extracting the data with the help of the parser ? I'd try something like the author described in chapter 8.3 in the Dive Into Python (link) book |
||
|
|
|
|
Regular expressions needn't scare you. Just start with easy stuff. Let's take removing tags for example. You'll want to look for the starts and ends of tags, thus:
What this does is look for any < characters in mystring, then "selects" up to the next > it sees. It then replaces the whole lot with nothing (that's our two single quotes). Now, let me explain it bit by bit. The < is obviously the start of any HTML tag, and the > is the end. That's easy. What's not so obvious is the purpose of the "[^>]" in the middle. This means "any character that isn't '>'". So if we wanted any character that wasn't a, we'd make it "[^a]". The square brackets mean "choose a character from this selection". The circumflex (the ^ character you get by hitting Shift+6) negates that selection, effectively saying "any character BUT these". The * says "get as many of these as you want (including none at all)". So our call to mystring.sub will remove "<>", "<a>" or "<My dog is 6 years old and we call him 'Scruffy'>". What it won't remove is "<em>Lucas is great</em>". If it comes across that string, it will replace it with "Lucas is great". I hope this all makes sense. |
|||
|
