num_sort | topic started 11/16/2002; 7:29:54 AM last post 11/16/2002; 7:29:54 AM |
Michael Gage - num_sort 11/16/2002; 7:29:54 AM (reads: 1725, responses: 0) |
Description Sorts a list into numerical order Syntax num_sort(@list) Params @list is the list to be sorted. Returns Returns list sorted numerically. Examples join(" ",num_sort(23,11,2,5,10)); returns "2 5 10 11 23" See Also lex_sort Macro Definition File PGbasicmacros.pl
|