if I have a list of strings e.g. ["a143.txt", "a9.txt", ] how can I sort it in ascending order by the numbers in the list, rather than by the string. I.e. I want "a9.txt" to appear before "a143.txt" since 9 < 143.
thanks.
|
It's called "natural sort order", From http://www.codinghorror.com/blog/2007/12/sorting-for-humans-natural-sort-order.html Try this:
|
|||||||||||
|
|
Use See http://wiki.python.org/moin/HowTo/Sorting/#Key_Functions for more information. |
|||
|
|
|
If you want to completely disregard the strings, then you should do
|
|||
|
|
More generic, if you want it to work also for files like: a100_32_12 (and sorting by numeric groups):
|
|||
|
|
|
|
|||||||||||||
|
a? – poke Mar 30 '11 at 20:26scipyornumpy. If this is the case, please remove those tags. – JoshAdel Mar 30 '11 at 20:35