I have a little problem with sorting TStringList with mixed values. Its something like:
7567533575 Joe
1543779744 Ann
9757462323 Jack
6999966578 Stef
and I need to sort this list to see:
1543779744 Ann
6999966578 Stef
7567533575 Joe
9757462323 Jack
I can do this with about 3x for loops, with string trim and one array. But it is very lame solution... I guess, someone have best code for this. I dont understand CustomSort... ehh. Please, help me.
- I use Delphi 10.