I'm trying to get the elements in an HTML doc that contain the following pattern of text: #\S{11}

<h2> this is cool #12345678901 </h2>

So, the previous would match by using:

soup('h2',text=re.compile(r' #\S{11}'))

And the results would be something like:

[u'blahblah #223409823523', u'thisisinteresting #293845023984']

I'm able to get all the text that matches (see line above). But I want the parent element of the text to match, so I can use that as a starting point for traversing the document tree. In this case, I'd want all the h2 elements to return, not the text matches.

Ideas?

link|improve this question

+1 for using a parser and a regex instead of trying to just use a regex. – Chas. Owens May 14 '09 at 22:26
Actually, the h2 restriction is ignored according to the BeautifulSoup documentation: "If you use text, then any values you give for name and the keyword arguments are ignored." – Rabarberski Jun 25 '10 at 14:23
feedback

1 Answer

up vote 7 down vote accepted
from BeautifulSoup import BeautifulSoup
import re

html_text = """
<h2>this is cool #12345678901</h2>
<h2>this is nothing</h2>
<h2>this is interesting #126666678901</h2>
<h2>this is blah #124445678901</h2>
"""

soup = BeautifulSoup(html_text)

for elem in soup('h2', text=re.compile(r' #\S{11}')):
    print elem.parent

Prints:

<h2>this is cool #12345678901</h2>
<h2>this is interesting #126666678901</h2>
<h2>this is blah #124445678901</h2>
link|improve this answer
Thanks! It's confusing that it returned what looked like a list of unicode strings. I appreciate the help. – sotangochips May 14 '09 at 22:05
feedback

Your Answer

 
or
required, but never shown

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