Xerix Posted January 21, 2014 Share Posted January 21, 2014 Hello, I want to sort numbers in an array. for example : #include <array.au3> local $array[4] = ["14","23","3","2.50"] _ArraySort($array) _ArrayDisplay($array) The result is 14 2.50 23 3 Is it normal ? Is there a way to have the correct sort ? 2.50 3 14 23 Thank you. Link to comment Share on other sites More sharing options...
jchd Posted January 21, 2014 Share Posted January 21, 2014 You are sorting string, not numbers. Hence you get lexicographic order, not numerical order. 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...
michaelslamet Posted January 21, 2014 Share Posted January 21, 2014 Like jchd said, you should convert it to number first before sorting. Something like this: #include <array.au3> local $array[4] = ["14","23","3","2.50"] For $a = 0 to Ubound($array)-1 $array[$a] = Number($array[$a]) Next _ArraySort($array) _ArrayDisplay($array) Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted January 21, 2014 Moderators Share Posted January 21, 2014 XerixmThat result is quite normal - the items are being sorted as ASCII strings because that is how you have stored them. Store them as numbers and you get the result you were expecting:#include <Array.au3> Local $array[4] = ["14", "23", "3", "2.50"] ; Strings _ArraySort($array) _ArrayDisplay($array) ; Sorted as strings Local $array[4] = [14, 23, 3, 2.50] ; Numbers _ArraySort($array) _ArrayDisplay($array) ; Sorted as numbersAll clear? 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...
Xerix Posted January 21, 2014 Author Share Posted January 21, 2014 You are sorting string, not numbers. Hence you get lexicographic order, not numerical order. Exact, my example is not complete. It must be something like : #include <array.au3> local $array[4] = ["A "& 14,"A "& 23,"A "& 3,"A "& 2.50] _ArraySort($array) _ArrayDisplay($array) And i would like to have : A 2.5 A 3 A 14 A 23 Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted January 21, 2014 Moderators Share Posted January 21, 2014 Xerix, Exact, my example is not completeAnd so you completely waste the time of the 3 people who responded because you cannot be bothered to provide all the necessary information - bravo! So now let us ask a few more questions so that we do not waste any more:- 1. Will the prefix always be "A" or can it change?- 2a. If it is always "A" why bother to store it in the array if you know you want to sort the suffix values numerically? Just add it when you extract the values.- 2b. If it is not always "A" how do you want the items sorted in respect of the prefix value?And, of course, anything else you can think of that might help us. 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...
Kilmatead Posted January 21, 2014 Share Posted January 21, 2014 Have a look at _ArrayNaturalSort() by wraithdu - it's always proven robust for me (rather useful for keeping filenames in the appropriate order). It's not the fastest thing (especially on larger 2D arrays, which is to be expected), but it works. Link to comment Share on other sites More sharing options...
Xerix Posted January 21, 2014 Author Share Posted January 21, 2014 (edited) Relax Melba23, do not drink as much coffee Just kidding. The prefix can change. The idea is to sort in first the text and after the number Example : A 1 A 2.5 A 14 A 23 AB 3 B 4.5 C 2 ... Edited January 21, 2014 by Xerix Link to comment Share on other sites More sharing options...
Xerix Posted January 21, 2014 Author Share Posted January 21, 2014 Have a look at _ArrayNaturalSort() by wraithdu - it's always proven robust for me (rather useful for keeping filenames in the appropriate order). It's not the fastest thing (especially on larger 2D arrays, which is to be expected), but it works. Thank you Kilmatead, i will look this Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted January 21, 2014 Moderators Share Posted January 21, 2014 Xerix,In that case I would use my _ArrayMultiColSort UDF and do this:#include "ArrayMultiColSort.au3" Global $aArray[7][2] = [ _ ["A", 14], _ ["AB", 3], _ ["C", 2], _ ["B", 4.5], _ ["A", 23], _ ["A", 2.5], _ ["A", 1]] _ArrayDisplay($aArray, "Original", Default, 8) Global $aSortData[2][2] = [[0, 0], [1, 0]] ; Sort both columns in ascending order _ArrayMultiColSort($aArray, $aSortData) _ArrayDisplay($aArray, "Sorted", Default, 8)Now you have everything sorted as you wish. M23P.S. And my coffee intake is minimal. 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...
Xerix Posted January 21, 2014 Author Share Posted January 21, 2014 Thank you Melba, I will look at your UDF 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