Jump to content

_ArraySort() no joy on numeric sorts


sshrum
 Share

Recommended Posts

Here's a sample to show what I am seeing:

#include <array.au3>
dim $aTest[4]
$aTest[0]="3"
$aTest[1]="1920"
$aTest[2]="0"
$aTest[3]="-768"
_ArrayDisplay($aTest, "PRESORT")
_ArraySort($aTest,0,1)
_ArrayDisplay($aTest, "SORTED")

Ack...I need numeric sorting. Is this a limitation of arraysort, or am I doing something wrong?

Sean Shrum :: http://www.shrum.net

All my published AU3-based apps and utilities

'Make it idiot-proof, and someone will make a better idiot'

 

Link to comment
Share on other sites

  • Moderators

Opps...nevermind...lost the quotes. Now it works as numeric.

I also made an array sort for numbers specifically... _ArraySortNum().

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

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