I'm looking for a very simple way to modify existing code. I'm using TinyMUX.
I have a function that outputs a pipe separated list, like this:
Borrow Threads (Larceny):2|Correspondence (Academics):1
Right now I got iter( <list> , %0i, |, %r)
and that's outputting onto a character sheet. Is there a simple way I can make it sort by the number at the end, instead of the first letter? I know sort()
exists, but best I can see, it's just looking at the first character (all items on this list are attribs on the same object, so dbref doesn't help).