_Added in 1.9.0_ *$sorttok(text,C,ncra)* Sorts the tokens in text. _[[$sorttok]] is case-insensitive, see [[$sorttokcs]] for case-sensitive version._ *Parameters* text - The text to tokenize. C - The "ASCII":http://www.asciitable.com/ value to tokenize by. ncra - n = numeric sort, c = channel nick prefix sort, r = reverse sort, a = alphanumeric sort. (Default is an alphabetic sort) *Example*
; Sort the tokens alphanumeric
//echo -ag $sorttok(e.d.c.b.a,46)

; Sort the tokens numeric, reversed
//echo -ag $sorttok(1.3.5.2.4,46,nr)