lex_sort | topic started 11/16/2002; 7:29:28 AM last post 11/16/2002; 7:29:28 AM |
Michael Gage - lex_sort 11/16/2002; 7:29:28 AM (reads: 1685, responses: 0) |
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" See Also num_sort Macro Definition File PGbasicmacros.pl
|