beserk1 Posted April 23, 2010 Posted April 23, 2010 Trying to create a script to extract info from a forum, used StringInStr to look for the string I want, but when I seperate the original string using the substring as a divider, a good chuck of string is missing. What this script suppose to do is put everything before the substring on 1.txt and everything after on 2.txt However what this is doing is put everything before the substring on 1.txt and no idea what is put on 2.txt InetGet("http://www.essentialdayspa.com/forum/viewforum.php?f=6","0.txt") $file = FileOpen ("0.txt") $fileLeft = FileOpen ("1.txt",2) $fileRight = FileOpen ("2.txt",2) $sFile = FileRead ( $file ) $result = StringInStr ( $sFile, "viewthread.php?tid=",0,1) $sTemp = StringLeft ( $sFile, $result ) FileWrite ( $fileLeft, StringLeft ( $sFile, $result ) ) FileWrite ( $fileRight, StringRight ( $sFile, $result ) ) FileClose($file) FileClose($fileLeft) FileClose($fileRight)
martin Posted April 23, 2010 Posted April 23, 2010 Trying to create a script to extract info from a forum, used StringInStr to look for the string I want, but when I seperate the original string using the substring as a divider, a good chuck of string is missing. What this script suppose to do is put everything before the substring on 1.txt and everything after on 2.txt However what this is doing is put everything before the substring on 1.txt and no idea what is put on 2.txt InetGet("http://www.essentialdayspa.com/forum/viewforum.php?f=6","0.txt") $file = FileOpen ("0.txt") $fileLeft = FileOpen ("1.txt",2) $fileRight = FileOpen ("2.txt",2) $sFile = FileRead ( $file ) $result = StringInStr ( $sFile, "viewthread.php?tid=",0,1) $sTemp = StringLeft ( $sFile, $result ) FileWrite ( $fileLeft, StringLeft ( $sFile, $result ) ) FileWrite ( $fileRight, StringRight ( $sFile, $result ) ) FileClose($file) FileClose($fileLeft) FileClose($fileRight) StringRight uses the count of characters required in th eresult not the starting position in the reference string. You could use StringTrimLeft more easily maybe. Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
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