Jump to content

How to read text from a web page?


Recommended Posts

lookup _IEBodyReadText in the help file.


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

Yeah, I suddunly thuoght about the IE pack:

$strURL = "http://something.com"
$objIE = _IECreate($strURL) ;Open IE with $strURL as the web page
$objIEBody = _IEBodyReadText($objIE)    ;Read the text between the <BODY> tags
_IEQuit($objIE) ; Quit the instance of IE
FileWrite("C:\\Temp\test2.txt", $objIEBody) ;Write the body text to a file

Thanks.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...