I'm trying to sort a list in a more advanced list. The list which I am treating is in the following format:
- 001 Concrete 
- 005 Wood, dark 
- 001 021 
- 002 Linoleum 
- 031 Concrete, dark 
- 003 012 
- 005 051 
- 005 331 
- 024 Wood, light 
I want to sort the list in an order where the indices 0-2 are sorted first as these are always numbers, and after that (indices from there 3:)letters are to be prioritized as these are the titles. It should sort the list like so:
- 001 Concrete 
- 001 021 
- 002 Linoleum 
- 003 012 
- 005 Wood, dark 
- 005 051 
- 005 331 
- 024 Wood, light 
- List item 
- 031 Concrete, dark 
So far I've tried to remove items at indices of titles, sorting, and replacing the items, but with no success.
Thanks for your time.
