Edano Posted June 9, 2013 Share Posted June 9, 2013 what i mean is: Dim $array1[24][1000] define a new array $array2[1000] out of $array1 2nd (or other) dimension. do i need to loop it out or is there a cleverer way ? thx E. [color=rgb(255,0,0);][font="'comic sans ms', cursive;"]FukuLeaks[/color][/font] Link to comment Share on other sites More sharing options...
water Posted June 9, 2013 Share Posted June 9, 2013 You have to create a new array and fill it by looping through $array1. 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...
Edano Posted June 9, 2013 Author Share Posted June 9, 2013 You have to create a new array and fill it by looping through $array1. . i hoped there would be something smarter. thx very much [color=rgb(255,0,0);][font="'comic sans ms', cursive;"]FukuLeaks[/color][/font] Link to comment Share on other sites More sharing options...
water Posted June 9, 2013 Share Posted June 9, 2013 You code it once and the problem is solved. Speed isn't an issue with about 1000 records to copy. 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...
jchd Posted June 9, 2013 Share Posted June 9, 2013 You can try this (partially tested only): This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
Edano Posted June 9, 2013 Author Share Posted June 9, 2013 thx. [color=rgb(255,0,0);][font="'comic sans ms', cursive;"]FukuLeaks[/color][/font] Link to comment Share on other sites More sharing options...
jchd Posted June 9, 2013 Share Posted June 9, 2013 Sorry for my previous dry post, I had to move quickly. The attached UDF offers functions to extract sub-arrays from arrays up to 4D. It also has transposition functions. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
AZJIO Posted June 9, 2013 Share Posted June 9, 2013 (edited) Edano, $array2 = $array1 ReDim $array2[1][1000] Edited June 9, 2013 by AZJIO Blue_Drache 1 My other projects or all Link to comment Share on other sites More sharing options...
Malkey Posted June 10, 2013 Share Posted June 10, 2013 Here is a working example. #include <Array.au3> ; Reminder:- ; Local array [No. of rows (1st dimension)] [No. of column (2nd dimension)] ; UBound($array1) gets size of 1st Dim UBound($array1, 2) gets size of 2nd Dimension Local $array1[4][6] = [[0, 1, 2, 3, 4, 5],[6, 7, 8, 9, 10, 11],[12, 13, 14, 15, 16, 17],[18, 19, 20, 21, 22, 23]] _ArrayDisplay($array1) ; ------------ Get Row ------------- Local $iGetRowNumber = 2 ; Base 0 If $iGetRowNumber > UBound($array1) - 1 Then $iGetRowNumber = UBound($array1) - 1 Local $arrayR[UBound($array1, 2)] For $i = 0 To UBound($array1, 2) - 1 $arrayR[$i] = $array1[$iGetRowNumber][$i] ; Get row Next _ArrayDisplay($arrayR, "Row #" & $iGetRowNumber) ; ------------ Get Column ------------- Local $iGetColNumber = 3 ; Base 0 If $iGetColNumber > UBound($array1, 2) - 1 Then $iGetColNumber = UBound($array1, 2) - 1 Local $arrayC[UBound($array1)] For $i = 0 To UBound($array1) - 1 $arrayC[$i] = $array1[$i][$iGetColNumber] ; Get column Next _ArrayDisplay($arrayC, "Column #" & $iGetColNumber) Link to comment Share on other sites More sharing options...
Edano Posted June 10, 2013 Author Share Posted June 10, 2013 Edano, $array2 = $array1 ReDim $array2[1][1000] . that was the solution i finally used. simply clone the array and forget the first dimension. ockham's razor. . [color=rgb(255,0,0);][font="'comic sans ms', cursive;"]FukuLeaks[/color][/font] 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