Orgins Posted May 27, 2008 Posted May 27, 2008 I think it's b/c its not all in one line but I don't really have a clue. #include <IE.au3> #include <String.au3> $oIE = _IECreate ("http://www.google.com/") _IELoadWait ($oIE) $sText = _IEBodyReadText ($oIE) $sText2 = _StringBetween ( $sText, "Advertising Programs", "About Google") Msgbox(1,"string",$sText) Msgbox(1,"StringBetween",$sText2) any pointers? I'm a newbie.Sorry if I don't reposed to your replays very fast.
weaponx Posted May 27, 2008 Posted May 27, 2008 StringBetween returns an array. Return Value Success: A 0 based $array[0] contains the first found string. Failure: 0 @Error: 1 = No inbetween string found.
Orgins Posted May 27, 2008 Author Posted May 27, 2008 K got it. Thxs. I'm a newbie.Sorry if I don't reposed to your replays very fast.
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