Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6961161
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T15:29:42+00:00 2026-05-27T15:29:42+00:00

With jQuery selectors you can select a div that contains the innerText John with

  • 0

With jQuery selectors you can select a div that contains the innerText “John” with $("div:contains('John')"), so you could match the second <div> in:

<div>Bill</div>
<div>John</div>
<div>Joe</div>

How can I do this in Python’s Beautiful Soup, or some other Python Module?

I just watched a lecture on scraping form PyCon 2010 where he mentions you can use CSS selectors in lxml.. Do I have to use that, or is there a way just with the Soup?

Background: Asking for the purpose of parsing a scraped web page.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T15:29:43+00:00Added an answer on May 27, 2026 at 3:29 pm

    A more concise way using BeautifulSoup:

    >>> soup('div', text='John')
    [u'John']
    >>> import re
    >>> soup('div', text=re.compile('Jo'))
    [u'John', u'Joe']
    

    soup() is equivalent to soup.findAll(). You could use string, regular expression, arbitrary function to select what you need.

    stdlib’s ElementTree is enough in your case:

    from xml.etree import cElementTree as etree
    
    xml = """
        <div>Bill</div>
        <div>John</div>
        <div>Joe</div>
    """
    root = etree.fromstring("<root>%s</root>" % xml)
    for div in root.getiterator('div'):
        if "John" in div.text:
           print(etree.tostring(div))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to build a simple jquery plugin that can take selectors as parameters.
The following two forms of jQuery selectors seem to do the same thing: $(div
I understand that in jQuery, it's advantageous to be more specific when using selectors
I am developing a website and I can't use jQuery (no discussion about this),
I've searched among jquery selectors for some time now, but can't find any solution
Is there a selector or function in JQuery that allows to select the current
Can anyone see anything that is wrong with this code it just isn't working...
Can anyone see anything that is wrong with this code it just isn't working...
I have a nested structure that can't be edited because of some hosted jQuery,
I'm working on the following selector in jQuery: $(div[id^=WebPartWPQ]:has(table.ms-sitedirresultssort) td:contains(' : ')).closest('div') In other

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.