I am having few files like..
l.1,l.3,l.2,l.12,l.36,l.24
When i am sorting the list it is giving me...
l.1,l.12,l.2,l.24,l.3,l.36
How can i get them in this way?..
l.2,l.2,l.3,l.12,l.24,l.36
Note: because it is not permitting to add the actual file name as it is i ve given it as a list. but the actual file names are joined by '.' like l.1 l.2
I can write a bubble sort algorithm for that. But I want a simpler way..
Thanks