I have set of strings like this.
1 Wednesday, 3 Monday, 1 2 Tuesday
Now I need to sort these considering only letters. The results will be
3 Monday, 1 2 Tuesday, 1 Wednesday
The strings are sorted by considering substrings (Wednesday, Monday, Tuesday) so I got the result. How I can do that ?