I want to perform sorting on a list of strings, If i take for example the list s
s = {"test9","test8","test10"};
If I perform the Sort function I will get:
{test10, test8, test9}
I want the sort to do it in a normal way
{test8, test9, test10}
Thank you in advance