dimchik Posted January 31, 2008 Posted January 31, 2008 ex. I have an array $a[20] $a[1]=1 $a[2]=3 $a[3-20] are empty i want to run function and add items to $a[$i] avoiding $a[1] and $a[2] which have values assigned basically detect empty array and add items to next available index?
Xenobiologist Posted January 31, 2008 Posted January 31, 2008 Hi, create a loop like (PseudoCode) For $i = 0 To Ubound($array) -1 If $array[$i] = "" Then _ArrayInsert ... Exitloop Endif Next Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
Uriziel01 Posted January 31, 2008 Posted January 31, 2008 (edited) For $i=3 to $i=20 step 1 if $array[$i] <> "" then _ArrayInsert( $Array,$i,"New value") Next Edited January 31, 2008 by Uriziel01
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