pshankland Posted October 11, 2006 Posted October 11, 2006 I need to be able to read some text from a web page. Any suggestions as to what would be the best solution? Thanks.
BigDod Posted October 11, 2006 Posted October 11, 2006 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
pshankland Posted October 11, 2006 Author Posted October 11, 2006 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now