Page 1 of 1

#PB_Sort_EmptyLast

Posted: Fri Jan 27, 2017 1:25 pm
by Lebostein
At the moment, empty strings are at the beginning of a sorted list:

Code: Select all

""
""
""
"alpha"
"beta"
"gamma"
"xylophone"
Would be nice to can move the empty strings to the end of the sorted list.

Code: Select all

"alpha"
"beta"
"gamma"
"xylophone"
""
""
""
Thanks!