Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Getting info from a file
#1
I did a google search and saved it in a file, "page.html".

I am trying to grab the result count into a variable.

My attempts to use regular expressions all ended in total frustration and didn't work. I looked for "About*results" because the number is between those words. It didn't find the line at all. Even if it did, I'd still be struggling with getting the number out of the line.

Any help for a very poor programmer?

Ken
Reply
#2
count of what? records, characters, or ?
Reply
#3
https://www.regexpal.com/ is a great resource for interactively testing regexes out, to try to find one that works.

If you could share a snippet of what you're trying to extract, maybe we can help. But also, if it's an html page, you could try BeautifulSoup, and use element/css selectors to find the content node.
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020