vote up 1 vote down star
1

I need to search through an html doc, find all of the spans and delete the spans and everything between them. What would a regular expression look like that would match everything between ?

flag

Duplicate: stackoverflow.com/questions/401726/…, stackoverflow.com/questions/442660/… – S.Lott Jan 15 '09 at 11:11
Neither of those has the right answer.... – jle Jan 15 '09 at 14:02
if you can't use beautiful soup, use it anyway. if you really can't use beautiful soup, quit your job. if you really, really can't use beautiful soup (why??), write your own simple html parser. but DON'T USE REGEX! – hop Jan 16 '09 at 2:19

closed as exact duplicate by ΤΖΩΤΖΙΟΥ Jan 15 '09 at 13:54

3 Answers

vote up -3 vote down check

<span.+?<\/span> will match the tags and anything in between them.

link|flag
-1: there are a lot of cases where this fails, nested <span>s for instance. – nosklo Jan 15 '09 at 13:43
vote up 0 vote down

You have to be careful with regular expressions---they won't work if spans are nested.

BeautifulSoup looks like a nice tool.

link|flag
vote up 16 vote down

Use Beautifulsoup. Or be sad. HTML and regular expression don't mix.

Here's the entire program:

import urllib2
from BeautifulSoup import BeautifulSoup

# Grab your html
html  = urllib2.urlopen("http://www.google.com").read()

# Create a soup object
soup  = BeautifulSoup(html)

# Find all the spans, even if they're malformed
spans = soup.findAll("span")

# Remove all the spans from the soup object
[span.extract() for span in spans]

# Dump your new HTML to stdout.
print soup
link|flag
While I agree, for this particular thing there's no reason to introduce beautiful soup. – Nick Stinemates Jan 15 '09 at 4:49
no? how about a span in a comment? or as a string in javascript code? or one that's malformed? – Triptych Jan 15 '09 at 5:00
This is good, however, I think using a list comprehension solely for a side-effect is bad form. Recommend a plain for loop here. – Dustin Jan 15 '09 at 5:15
I should also download a gzipped version of the HTML, wrap it in a try/except block, encode the output, etc. Just trying to keep it simple. – Triptych Jan 15 '09 at 5:29
I second Dustin's opinion. Don't use a list comprehension if you don't need a list of the results. – nosklo Jan 15 '09 at 13:41
show 1 more comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.