SortUpper

English support forum

Moderators: Hacker, petermad, Stefan2, white

Post Reply
User avatar
sas2000
Power Member
Power Member
Posts: 682
Joined: 2003-02-07, 04:32 UTC
Location: Galiza

SortUpper

Post by *sas2000 »

 
I've been reading Tc help file, but i don't understand the practical differences between using SortUpper=2 and SortUpper=3, can you help me ?. Thanks.


From Tc Help :

SortUpper=0

0: Default sort method
1: When sorting files, put files starting with an underscore _ last
2: Uses mixed lexical and numerical sorting, e.g. file10.txt comes AFTER file1.txt
3: Like 2, but uses StrCmpLogicalW for the comparison.
 
 
User avatar
Sheepdog
Power Member
Power Member
Posts: 5150
Joined: 2003-12-18, 21:44 UTC
Location: Berlin, Germany
Contact:

Post by *Sheepdog »

Code: Select all

SortUpper=2       Sortupper=3

1                  1
2                  2
10                 10
12                 12
ab                 ab                              
b                  äc
c                  b
y                  c
äc                 y    
The difference is the sorting of special chars, i.e. german ä,ö,ü etc.

sheepdog
"A common mistake that people make when trying to design something
completely foolproof is to underestimate the ingenuity of complete fools."
Douglas Adams
User avatar
Clo
Moderator
Moderator
Posts: 5731
Joined: 2003-12-02, 19:01 UTC
Location: Bordeaux, France
Contact:

Picture---

Post by *Clo »

2sas2000
:) Hello!
- To illustrate the good Stefan's explanation above, please give a look HERE
with the charset ISO - LATIN I (1252)

- It can work under any Windows 32-bit, if you can install Internet Explorer 6.x { that was not expected… :wink: }

:mrgreen: Kind regards,
Claude
Clo
#31505 Traducteur Français de TC French translator Aide en Français Tutoriels Français English Tutorials
User avatar
sas2000
Power Member
Power Member
Posts: 682
Joined: 2003-02-07, 04:32 UTC
Location: Galiza

Post by *sas2000 »

 

2 Sheepdog & Clo :

Thanks for your explanations. :D
Post Reply