sort-list
Last updated
Last updated
sort-list
adaptor sorts values in a list.
Sorts a list by ascending or descending order. In ascending mode, numbers come first and then text (1,2,cow), in descending mode text comes first (cow,2,1). Use before or after adaptor to get a sorted list without duplicates.
list
Type: list
Required: Yes
The list to be sorted.
sort direction
Type: text
Required: No
Specifies the sort direction, should be either asc
(for ascending order) or desc
(for descending order).
list
Type: list
A list containing the sorted values.
list
:
January
February
March
April
sort direction:
null (empty)
list
:
April
February
January
March
-> Sorted a list in ascending order.
list
:
January
February
March
April
sort direction:
desc
list
:
March
April
February
January
-> Sorted a list in ascending order.
Create an alphabetic reference of names.
Separate out text and numbers.