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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:55:11+00:00 2026-05-27T04:55:11+00:00

I try to extract all five rows listed in the table above. I’m using

  • 0

enter image description here

I try to extract all five rows listed in the table above.

I’m using Ruby hpricot library to extract the table rows using xpath expression.

In my example, the xpath expression I use is /html/body/center/table/tr. Note that I’ve removed the tbody tag from the expression, which is usually the case for successful extraction.

The weird thing is that I’m getting the first three rows in the result with the last two rows missing. I just have no idea what’s going on there.

EDIT: Nothing magic about the code, just attaching it upon request.

require 'open-uri'
require 'hpricot'

faculty = Hpricot(open("http://www.utm.utoronto.ca/7800.0.html"))
(faculty/"/html/body/center/table/tr").each do |text|
  puts text.to_s
end
  • 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-27T04:55:12+00:00Added an answer on May 27, 2026 at 4:55 am

    The HTML document in question is invalid. (See http://validator.w3.org/check?uri=http%3A%2F%2Fwww.utm.utoronto.ca%2F7800.0.html.) Hpricot parses it in another way than your browser — hence the different results — but it can’t really be blamed. Until HTML5, there was no standard on how to parse invalid HTML documents.

    I tried replacing Hpricot with Nokogiri and it seems to give the expected parse. Code:

    require 'open-uri'
    require 'nokogiri'
    
    faculty = Nokogiri.HTML(open("http://www.utm.utoronto.ca/7800.0.html"))
    
    faculty.search("/html/body/center/table/tr").each do |text|
      puts text
    end
    

    Maybe you should switch?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Python re to try to make a regular expression which finds all
when I try to extract this video ID (AIiMa2Fe-ZQ) with a regex expression, I
I am using a library called EXIFextractor to extract metadata information from images. This
I try to extract all files from .zip containing subfolders in one folder. I
I am trying to extract all the images from a pdf using itextsharp but
I'm try to extract info from a MySQL DB into a MS SQL DB.
In a try/except block, how do I extract the Oracle error number?
When I try to extract text from my PDF files, it seems to insert
to all. i developing a webpage using asp.net with c# language, in this webpage
I'm using ABCpdf to extract the text content of some PDF files, in particular

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.