Jump to content

Recommended Posts

Posted

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.

Posted

You are sorting string, not numbers. Hence you get lexicographic order, not numerical order.

  Reveal hidden contents

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)

  • Moderators
Posted

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:

  Reveal hidden contents

 

Posted
  On 1/21/2014 at 1:54 PM, jchd said:

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

  • Moderators
Posted

Xerix,

 

  Quote

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:

  Reveal hidden contents

 

Posted (edited)

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
Posted
  On 1/21/2014 at 3:09 PM, Kilmatead said:

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

  • Moderators
Posted

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:

  Reveal hidden contents

 

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
  • Recently Browsing   0 members

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