How a list of filenames with numeric characters be sorted? Should the file part and numeric part be split. Below is the question but the filename could also be file1xx22yy.gif and so on.
Sort a list of file by names, that has numbers in them. Sort a list of files like: "file1" "file10" "file2" in the correct order: String length -> Number precedence
So actual list needs to be "file1" "file2" "file10"
I tried sorting using string sort but the results did not match the output specified in the question