SC formatlist - items sorting differs from in pane
Posted: 17 Nov 2016 12:02
XY: v17.30.0109
3 items: abc (2).txt, abc (1).txt, abc.txt sorted by ascending name are arranged in this order in pane:
#1 abc.txt
#2 abc (1).txt
#3 abc (2).txt
However, this script:
or:
returns a list of another order:
abc (1).txt|abc (2).txt|abc.txt
3 items: abc (2).txt, abc (1).txt, abc.txt sorted by ascending name are arranged in this order in pane:
#1 abc.txt
#2 abc (1).txt
#3 abc (2).txt
However, this script:
Code: Select all
text formatlist("abc (2).txt|abc (1).txt|abc.txt", "s");Code: Select all
text formatlist("abc (2).txt|abc (1).txt|abc.txt", "n");abc (1).txt|abc (2).txt|abc.txt