Helllo,
I need to sort lots of datalines not a typical way...
I get the charStrings like
cVar = "S,M,XL,L,2X,3X" this is comming from a loop reading a database
I put them in a array, but then the array should sort always with this as possible result.
aResult = "S,M,L,XL,2X,3X" it is possible that cVar has only 3 items cVar = "M,S,XL" and aResult should be "S,M,XL"
"XS,S,M,L,XL,2X,3X,4X,5X" are the options that can be found...
How can it be done ? Asort = different