Difference between revisions of "Lex sort"
Jump to navigation
Jump to search
(from ur manpages) |
|
(No difference)
|
Latest revision as of 20:17, 18 November 2009
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"