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 6833965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:03:09+00:00 2026-05-26T23:03:09+00:00

I was unable to find this question specifically, hopefully I’m not wrong about it

  • 0

I was unable to find this question specifically, hopefully I’m not wrong about it being a new variation on an older question.

I’m hoping to be able to select the table after the (inconsistent) p.red element text(), where the ‘p’ does not contain the text “Alphabetical” but does contain the text “OVERALL” ..

The DOM looks something like this:

<p class=red>Some Text</p>
  <table class="newclass">
  <tr></tr>
  <tr></tr>
</table>

<p class=red>Some Text</p>
<table class="newclass">
  <tr></tr>
  <tr></tr>
</table>

<p class=red>OVERALL</p>
<table class="newclass">
  <tr></tr>
  <tr></tr>
</table>
  • the table comes in at different counts for each page.

I want to get that p tag’s text() but also get the table directly after it. Again, where the text() contains “OVERALL” but not “ALPHABETICAL” .. should I build an array and .reject() the elements without matches? I’m not sure at the moment and I’m fairly new to using Ruby and Mechanize, thanks in advance for any help!

  • 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-26T23:03:09+00:00Added an answer on May 26, 2026 at 11:03 pm

    Using Nokogiri’s CSS evaluation is nice and clean:

    require 'nokogiri'
    
    doc = Nokogiri::HTML(<<EOT)
    <p class=red>Some Text</p>
      <table class="newclass">
      <tr></tr>
      <tr></tr>
    </table>
    
    <p class=red>Some Text</p>
    <table class="newclass">
      <tr></tr>
      <tr></tr>
    </table>
    
    <p class=red>OVERALL</p>
    <table class="newclass">
      <tr></tr>
      <tr></tr>
    </table>
    EOT
    
    puts doc.at('p:contains("OVERALL")').to_html
    # >> <p class="red">OVERALL</p>
    
    puts doc.at('p:contains("OVERALL") ~ table').to_html
    # >> <table class="newclass">
    # >> <tr></tr>
    # >> <tr></tr>
    # >> </table>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Perhaps this question has been asked elsewhere, but I'm unable to find it. With
This is a simple question yet I was unable to find any information at
This is probably a simple question, but i have been unable to find a
Although I found many answers and discussions about this question, I am unable to
I was unable to find an answer to this question anywhere... What happens with
I'm sure this question has been answered already, however I was unable to find
I've searched for an answer to this question and have been unable to find
My question is similar to this question and since I was unable to find
I've searched SO and have been unable to find this question asked before, but
I've been unable to find any info on this, which seems like it could

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.