ThomasQ Posted March 28, 2010 Posted March 28, 2010 Hi! I was wondering how to return the number of columns in an array. I've been searching 45 minutes online & in the help file, but no luck! Thanks in advance Thomas
PsaltyDS Posted March 28, 2010 Posted March 28, 2010 Learn to use Ubound(), see help file. Global $aArray[5][4] $iDim = Ubound($aArray, 0) ; Returns number of indexes, or dimensions (2 for a 2D array) $iRows = Ubound($aArray, 1) ; Returns number of elements in the first index (commonly called rows in 2D) $iCols = Ubound($aArray, 2) ; Returns number of elements in the second index (commonly called columns in 2D) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
ThomasQ Posted March 28, 2010 Author Posted March 28, 2010 (edited) Thanks a lot! My help file wasn't as clear as that there Edited March 28, 2010 by ThomasQ
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