Kachnik Posted February 24, 2009 Posted February 24, 2009 Hello, I would like to grab some info from www page so I need it somehow in autoit. I am able to get thw source into var $sHTML = _IEDocReadHTML ($oIE) but it is to large. is it somehow possible to split it by lines? or better to walk thru line by line? something like foreach... If no I thing that I will save the source into file and use file read line, but I am not able to find how to get the source directly into file. Thanks for the tips! Kachnik
Authenticity Posted February 24, 2009 Posted February 24, 2009 $aHTML = StringSplit($sHTML, @CRLF, 1)
Kachnik Posted March 2, 2009 Author Posted March 2, 2009 $aHTML = StringSplit($sHTML, @CRLF, 1)How simple If you know how Thank you very much
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