Hello,

i have a QStringList and use the public function sort() to sort my list.

Two entrys of my list are "ABC 200" and "ABC 90" and they are sorted

"ABC 200"
"ABC 90"

but i want this

"ABC 90"
"ABC 200"

How can i achieve that?

Thx
HappyCoder

PS: With "ABC 200" and "ABC 90" is one example, my list contains over 30 entrys and this happens several times.