telmob 2 Posted September 4, 2011 With the following ini file, how do i place only the keys starting with 'WL' in a combo? Is that possible to do this 'easy-way'? [user1] Hash=ASDFASDFER456745674567DFHGDFHG Name=Telmo WL-UT2-146.10= WL-PT2-046.11= WL-MP2-356.09= Num=1 Share this post Link to post Share on other sites
BrewManNH 1,305 Posted September 4, 2011 Look at IniReadSection, you can read the entire section to an array and then loop through the array to get the items you want. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way!I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Share this post Link to post Share on other sites
telmob 2 Posted September 4, 2011 Thanks, i'll check it out. Share this post Link to post Share on other sites
telmob 2 Posted September 4, 2011 This seems harder than i expected... #include Local $var = IniReadSection(@ScriptDir & "\config.ini", "user1") Local $aiResult = _ArrayFindAll($var, "WL") _ArrayDisplay($aiResult, "Results of searching for 'WL' in $var") This displays no result. I am a bit of a noob... Share this post Link to post Share on other sites
BrewManNH 1,305 Posted September 5, 2011 Try this: Global $var = IniReadSection(@ScriptDir & "\config.ini", "user1") For $I = 1 to $var[0][0] If StringLeft($Var[$I][0], 2) = "WL" then ;do something here Endif Next If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way!I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Share this post Link to post Share on other sites
GEOSoft 67 Posted September 5, 2011 Read the parameters for _ArrayFindAll() Local $aiResult = _ArrayFindAll($var, "WL", 0, 0, 0, 1) GeorgeQuestion about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else."Old age and treachery will always overcome youth and skill!" Share this post Link to post Share on other sites
telmob 2 Posted September 5, 2011 Very nice guys. Thanks for your help. It really saved my day Share this post Link to post Share on other sites