tempman Posted September 30, 2013 Share Posted September 30, 2013 I need to copy Harry, Dick and Tom from $aArray to $bArray #include <Array.au3> Local $aArray[4] $aArray[0] = "Harry" $aArray[1] = "Dick" $aArray[2] = "Jon" $aArray[3] = "Tom" _ArrayDisplay($aArray, "") Dim $bArray[3] _ArrayDisplay($bArray, "")How? Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted September 30, 2013 Moderators Share Posted September 30, 2013 tempman,Do you know which numerical elements of teh first array contain the values or do you need to check the value of each element against a list? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
tempman Posted September 30, 2013 Author Share Posted September 30, 2013 Long story short, I got txt file with bunch of names, one name, one line and let say 4-5 names and then "-----" and I need to seperate in differnt txt files.name.txt-----name1name2name3-----name4name5-----name6name7name8-----1.txtname1name2name32.txtname4name53.txtname6name7name8 Link to comment Share on other sites More sharing options...
Moderators Solution Melba23 Posted September 30, 2013 Moderators Solution Share Posted September 30, 2013 tempman,This is how I would go about it:#include <Array.au3> ; Just for display ; Simulate reading the file into an array Global $aInitial_Array[12] = ["-----", "name1", "name2", "name3", "-----", "name4", "name5", "-----", "name6", "name7", "name8", "-----"] ; Declare an array large enough to hold all possible items Global $aTemp_Array[UBound($aInitial_Array)] ; And a counter Global $iCount = 0 For $i = 0 To UBound($aInitial_Array) - 1 ; Loop through the array looking for the next name If $aInitial_Array[$i] = "-----" Then ; Have we found any names? If $iCount Then ; Display them _ArrayDisplay($aTemp_Array, $iCount) ; Then write the file using _FileWriteFromArray - $iCount gives you the $iUbound parameter ; Finally reset the temp array and count for the next section Global $aTemp_Array[UBound($aInitial_Array)] $iCount = 0 EndIf Else ; Add the item to the temp array $aTemp_Array[$iCount] = $aInitial_Array[$i] ; Increase the count $iCount += 1 EndIf NextAll clear? M23 tempman 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area 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