![]() ![]() |
|
SORTThe SORT function sorts all elements of a dynamic array in ascending left-justified order.
COMMAND SYNTAXSORT(expression)
SYNTAX ELEMENTSexpression may evaluate to any data type but will only be useful if it evaluates to a dynamic array.
NOTESThe dynamic array can contain any number and combination of system delimiters. The SORT() function will return an attribute delimited array of the sorted elements. Note that all system delimiters in expression will be converted to an attribute mark '0xFE' in the sorted result. For example, the following code
will return
where '^' is an attribute mark, '0xFE'. MyArray remains unchanged. The SORT is achieved by the quick sort algorithm, which sorts in situ and is very fast.
INTERNATIONAL MODE When using the SORT function in International Mode, the function will use the currently configured locale to determine the rules by which each string is considered less than or greater than the other for sort purposes.
EXAMPLE
|