MadBoy Posted March 23, 2006 Posted March 23, 2006 I couldn't find suitable answer on forum so i'll ask. I'm trying to get some info from html page with _INetGetSource($adress). It all works perfect till moment when i have to 'use' the info of page. I'm trying to do string split. $anothersplit = StringSplit($registrystring[2], '</a>') Problem is that <, > and / are special chars? I need a way to use them int string split. Any ideas? My little company: Evotec (PL version: Evotec)
ChrisL Posted March 23, 2006 Posted March 23, 2006 Try Chr(60) Chr (62) [u]Scripts[/u]Minimize gui to systray _ Fail safe source recoveryMsgbox UDF _ _procwatch() Stop your app from being closedLicensed/Trial software system _ Buffering Hotkeys_SQL.au3 ADODB.Connection _ Search 2d Arrays_SplashTextWithGraphicOn() _ Adjust Screen GammaTransparent Controls _ Eventlogs without the crap_GuiCtrlCreateFlash() _ Simple Interscript communication[u]Websites[/u]Curious Campers VW Hightops Lambert Plant Hire
MadBoy Posted March 23, 2006 Author Posted March 23, 2006 Actually the problem is with \ My little company: Evotec (PL version: Evotec)
GaryFrost Posted March 23, 2006 Posted March 23, 2006 I couldn't find suitable answer on forum so i'll ask. I'm trying to get some info from html page with _INetGetSource($adress). It all works perfect till moment when i have to 'use' the info of page. I'm trying to do string split. $anothersplit = StringSplit($registrystring[2], '</a>') Problem is that <, > and / are special chars? I need a way to use them int string split. Any ideas? try $anothersplit = StringSplit($registrystring[2], '</a>',1) SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
MadBoy Posted March 23, 2006 Author Posted March 23, 2006 Ah sorry I used it one time and forgot i need to set the flag :/ Tnx Gafrost! My little company: Evotec (PL version: Evotec)
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