txt_sort(TEXT*);

Sorts all strings of a text in ascending alphabetic order (case insensitive). Empty strings are sorted at the end of the text.

Parameters:

TEXT* TEXT pointer

Speed:

Medium

Example:

txt_for_dir(my_text,"*.htm");  // loads the text with file names
txt_sort(my_text); // sort the file names

See also:

TEXT