Python Forum

Full Version: Getting info from a file
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
count of what? records, characters, or ?
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.