#PB_Sort_EmptyLast
Posted: Fri Jan 27, 2017 1:25 pm
At the moment, empty strings are at the beginning of a sorted list:
Would be nice to can move the empty strings to the end of the sorted list.
Thanks!
Code: Select all
""
""
""
"alpha"
"beta"
"gamma"
"xylophone"
Code: Select all
"alpha"
"beta"
"gamma"
"xylophone"
""
""
""