russell Posted November 16, 2011 Share Posted November 16, 2011 (edited) i took this from the help #include <Array.au3> Local $avArray[10] $avArray[0] = "JPM" $avArray[1] = "Holger" $avArray[2] = "Jon" $avArray[3] = "Larry" $avArray[4] = "Jeremy" $avArray[5] = "Valik" $avArray[6] = "Cyberslug" $avArray[7] = "Nutster" $avArray[8] = "JdeB" $avArray[9] = "Tylo" _ArrayDisplay($avArray, "$avArray set manually 1D") _ArrayDisplay($avArray, "$avArray set manually 1D transposed", -1, 1) If i were to not have a vaule in let say $avArray[4], is there are way to drop it so it read $avArray[0] = "JPM" $avArray[1] = "Holger" $avArray[2] = "Jon" $avArray[3] = "Larry" $avArray[5] = "Valik" $avArray[6] = "Cyberslug" $avArray[7] = "Nutster" $avArray[8] = "JdeB" $avArray[9] = "Tylo" Or reorganize to drop the dead space? Like this $avArray[0] = "JPM" $avArray[1] = "Holger" $avArray[2] = "Jon" $avArray[3] = "Larry" $avArray[4] = "Valik" $avArray[5] = "Cyberslug" $avArray[6] = "Nutster" $avArray[7] = "JdeB" $avArray[8] = "Tylo" Currently the best i can do is like this: $avArray[0] = "JPM" $avArray[1] = "Holger" $avArray[2] = "Jon" $avArray[3] = "Larry" $avArray[4] = $avArray[5] = "Valik" $avArray[6] = "Cyberslug" $avArray[7] = "Nutster" $avArray[8] = "JdeB" $avArray[9] = "Tylo" But i need to find a way to no have the dead spot Edited November 16, 2011 by russell muppet hands are so soft :) Link to comment Share on other sites More sharing options...
Realm Posted November 16, 2011 Share Posted November 16, 2011 (edited) _ArrayDelete() Directly from the Help File: #include <Array.au3> Local $avArray[10] $avArray[0] = "JPM" $avArray[1] = "Holger" $avArray[2] = "Jon" $avArray[3] = "Larry" $avArray[4] = "Jeremy" $avArray[5] = "Valik" $avArray[6] = "Cyberslug" $avArray[7] = "Nutster" $avArray[8] = "JdeB" $avArray[9] = "Tylo" _ArrayDisplay($avArray, "$avArray BEFORE _ArrayDelete()") _ArrayDelete($avArray, 8) _ArrayDisplay($avArray, "$avArray AFTER _ArrayDelete()") Edit: Added example from Helpfile Edited November 16, 2011 by Realm My Contributions: Unix Timestamp: Calculate Unix time, or seconds since Epoch, accounting for your local timezone and daylight savings time. RegEdit Jumper: A Small & Simple interface based on Yashied's Reg Jumper Function, for searching Hives in your registry. Link to comment Share on other sites More sharing options...
water Posted November 16, 2011 Share Posted November 16, 2011 _Arraydelete($avArray, 4) will delete the empty element. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
russell Posted November 16, 2011 Author Share Posted November 16, 2011 oo ok i was thinking it would only delete the value in that element. Thanks muppet hands are so soft :) Link to comment Share on other sites More sharing options...
russell Posted November 16, 2011 Author Share Posted November 16, 2011 (edited) So why doesn't this work #include <Array.au3> Local $avArray[10] $avArray[0] = "JPM" $avArray[1] = "Holger" $avArray[2] = "Jon" $avArray[3] = "Larry" $avArray[4] = "" $avArray[5] = "sam" $avArray[6] = "Cyberslug" $avArray[7] = "Nutster" $avArray[8] = "JdeB" $avArray[9] = "Tylo" For $i = 0 to $avArray If $avArray[$i] ="" Then _ArrayDelete($avArray, $i) Next _ArrayDisplay($avArray, "$avArray AFTER _ArrayDelete()") Edited November 16, 2011 by russell muppet hands are so soft :) Link to comment Share on other sites More sharing options...
water Posted November 16, 2011 Share Posted November 16, 2011 (edited) If you delete an element of an array you have to run through the array from the highest to the lowest element: #include <Array.au3> Local $avArray[10] $avArray[0] = "JPM" $avArray[1] = "Holger" $avArray[2] = "Jon" $avArray[3] = "Larry" $avArray[4] = "" $avArray[5] = "sam" $avArray[6] = "Cyberslug" $avArray[7] = "Nutster" $avArray[8] = "JdeB" $avArray[9] = "Tylo" For $i = Ubound($avArray, 1)-1 to 0 If $avArray[$i] ="" Then _ArrayDelete($avArray, $i) Next _ArrayDisplay($avArray, "$avArray AFTER _ArrayDelete()") Because if the array has 5 elements at the beginning and you delete one element (now the array has onyl 4 elements) your loops still goes up to element 5 which then doesn't exist any more. Edited November 16, 2011 by water My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
russell Posted November 16, 2011 Author Share Posted November 16, 2011 alright, so you have the place held and have to esitail reload or review in information in the array? BTW thanks muppet hands are so soft :) Link to comment Share on other sites More sharing options...
Herb191 Posted November 16, 2011 Share Posted November 16, 2011 (edited) I am sure there is more then one way to do this but when I use _ArrayDelete in a loop this is how I do it. #include <Array.au3> Local $avArray[10] $avArray[0] = "JPM" $avArray[1] = "Holger" $avArray[2] = "Jon" $avArray[3] = "" $avArray[4] = "Jeremy" $avArray[5] = "sam" $avArray[6] = "" $avArray[7] = "Nutster" $avArray[8] = "JdeB" $avArray[9] = "Tylo" $count = 0 For $i = 0 To UBound($avArray, 1) - 1 If $avArray[$i] = "" Then _ArrayDelete($avArray, $i) $count = $count + 1 If $count = UBound($avArray, 1) - 1 Then ExitLoop Next _ArrayDisplay($avArray, "$avArray AFTER _ArrayDelete()") Edited November 16, 2011 by Herb191 Link to comment Share on other sites More sharing options...
russell Posted November 16, 2011 Author Share Posted November 16, 2011 that seems to work, thank you very much muppet hands are so soft :) Link to comment Share on other sites More sharing options...
water Posted November 16, 2011 Share Posted November 16, 2011 esitail? Sorry, my english-german dictionary can't help me with this word. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
Malkey Posted November 17, 2011 Share Posted November 17, 2011 @water "Step -1" Malkey Link to comment Share on other sites More sharing options...
BrewManNH Posted November 17, 2011 Share Posted November 17, 2011 (edited) Herb191That code won't work the way you want it to. You have to recurse through the array in reverse, or you're either going to get an array subscript error, or not delete items that you need to delete. The best way is the way that water showed, except you need to add a Step -1 at the end of the For $i = Ubound($avArray, 1)-1 to 0 line.EDIT: Typo Edited November 17, 2011 by BrewManNH 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 Link to comment Share on other sites More sharing options...
Spiff59 Posted November 17, 2011 Share Posted November 17, 2011 (edited) Using ArrayDelete seems pretty inefficient, as it both processes the entire array each time it's called, and executes a Redim() on the array each time it's called. I would think a single pass through the array, and a single Redim() like this would be a better way to go: #include <Array.au3> Local $avArray[10] $avArray[0] = "JPM" $avArray[1] = "Holger" $avArray[2] = "Jon" $avArray[3] = "" $avArray[4] = "Jeremy" $avArray[5] = "sam" $avArray[6] = "" $avArray[7] = "Nutster" $avArray[8] = "JdeB" $avArray[9] = "Tylo" Local $idx = 0 For $i = 0 To UBound($avArray) - 1 If $avArray[$i] <> "" Then $avArray[$idx] = $avArray[$i] $idx += 1 EndIf Next ReDim $avArray[$idx] _ArrayDisplay($avArray, "$avArray AFTER _ArrayDelete()") edit: bit 'o clean up Edited November 17, 2011 by Spiff59 Link to comment Share on other sites More sharing options...
water Posted November 17, 2011 Share Posted November 17, 2011 @water "Step -1"MalkeyOops I shouldn't post untested code! My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
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