|
Chaz Longstaff
Registered User
Join date: 11 Oct 2006
Posts: 685
|
06-17-2008 21:01
Any way to do a case insensitive sort?
llListSort produces this, which I understand why it does, and fully commend it for doing so.....
Tap Legs 2, Thoughtful, Waken, default, stand ---
it's just that for this particular application, i'd rather have the d (default) and s (stand) inserted earlier in the list with the other D's and S's.
|
|
Hewee Zetkin
Registered User
Join date: 20 Jul 2006
Posts: 2,702
|
06-17-2008 21:25
You could double the list length by creating two strides, the first with the lower-/upper-case version of the string, and the second with the actual case. Then sort with a stride of two, then extract the second stride (discarding the lower-/upper-case version).
|