tamir Posted February 26, 2005 Posted February 26, 2005 i need to create function to sort array with few changes. i looked at _ArraySort but it is little confusing, so can any1 tell me how basicly the function sorts the array? (numerically)
SlimShady Posted March 21, 2005 Posted March 21, 2005 Here's a test script I made: #include <Array.au3> Dim $TestArr[6] $TestArr[0] = 1 $TestArr[1] = "_" $TestArr[2] = 0 $TestArr[3] = 2 $TestArr[4] = "A" $TestArr[5] = "b" If _ArraySort($TestArr) Then _ArrayDisplay($TestArr, "Test _ArraySort")
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