
06-27-2009, 11:23 PM
|
Will work for food. Maybe
|
 |
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
|
|
sortsub()
.sortsubascending(index)
.sortsubdescending(index)
Will sort an array from the index provided in the subarrays.
Example:
this.test = {{"one",1},{"five",5},{"three",3},{"four",4},{"two ",2}};
this.test.sortsubascending(1);
Will return:
this.test = {{"one",1},{"two",2},{"three",3},{"four",4},{"five ",5}};
I'm not exactly sure of the syntax, but I'd like to see some way for this to be easily done. |
|
|