Take a collection of these kinds of strings:
"foo: a message"
"bar: d message"
"bar: b message"
"foo: c message"
The two strings foo: and bar: are of the same length so I would like to start sorting from index of position 5 So my output would be...
"foo: a message"
"bar: b message"
"foo: c message"
"bar: d message"