SortText
Qubes 5.3 Sorts a list or a list of values by ascending alphabetical order of the values (case sensitive).
Syntax
SortText(param1, param2, ...)
param1 = first parameter in the set (value, range, or list)
param2 = second parameter in the set (value, range, or list)
... = nth parameter in the set (value, range, or list)
Remarks
If you want to sort by numerical order, see SortNum.
The syntax and aggregation of values is similar to List.
Examples
SortText("apple", "strawberry", "banana") = { "apple", "banana", "strawberry" }SortText(2, 1, 20, 10) = { "1", "10", "2", "20" }