Jump to content

Strange arraysort


Xerix
 Share

Recommended Posts

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

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 here
RegExp tutorial: enough to get started
PCRE 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

  • Moderators

Xerixm

That 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 numbers
All clear? :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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

  • Moderators

Xerix,

 

Exact, my example is not complete

And so you completely waste the time of the 3 people who responded because you cannot be bothered to provide all the necessary information - bravo! :mad2:

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

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Relax Melba23, do not drink as much coffee ;) 

Just kidding. :D 

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 by Xerix
Link to comment
Share on other sites

  • Moderators

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. :)

M23

P.S. And my coffee intake is minimal. ;)

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...