jbnh Posted July 31, 2008 Posted July 31, 2008 (edited) Hello everyone I fetch a txt file from internet and i want to get a number that is in. This number is never the same so i use _StringBetween Here's for example the line html code: <a href="daoc://71.164.188.115:10300" onmouseover="Tip('You must have DAoC Portal installed for this link to work!')">Connect</a></td><td class="">12</td> I do so: $String = FileRead($file) $player1 = _StringBetween($String, '<a href="daoc://71.164.188.115:10300" onmouseover="Tip(''You must have DAoC Portal installed for this link to work!'')">Connect</a></td><td class="">', '</td>') MsgBox(0,"",$player1) But i recieve nothing in the msgbox. PS: i cant use something smaller than : '<a href="daoc://71.164.188.115:10300" onmouseover="Tip(''You must have DAoC Portal installed for this link to work!'')">Connect</a></td><td class="">' Cause there is similar sentence in the txt. Quotes problem? Thanks to use easy english words CU Edited July 31, 2008 by jbnh
BrettF Posted July 31, 2008 Posted July 31, 2008 #Include <String.au3> $line = "<a href=""daoc://71.164.188.115:10300"" onmouseover=""Tip('You must have DAoC Portal installed for this link to work!')"">Connect</a></td><td class="""">12</td>" $ret = _StringBetween ($line, "<a href=""daoc://71.164.188.115:10300"" onmouseover=""Tip('You must have DAoC Portal installed for this link to work!')"">Connect</a></td><td class="""">", "</td>") MsgBox (0, "", $ret[0]) Helpfile says so: Return Value Success: A 0 based $array[0] contains the first found string. Failure: 0 @Error - 1 = No inbetween string found. Add some error checking before calling the message box, or it will crash. (IsArray, If @Error Then....) Cheers, Brett Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
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