Lex sort
Jump to navigation
Jump to search
lex_sort
Description
Returns a list sorted in lexigraphic (alphabetical) order.
Syntax
lex_sort(@list)
Params
@list is the list to be sorted.
Returns
Returns list sorted alphabetically (lexigraphically).
Examples
join(" ", lex_sort('a','b',2,5,10) ); returns "10 2 5 a b"