I'm trying to sort an arraylist of strings made up of numbers and letters, an example of the list once sorted would be:
name 1
name 2
name 3
name 11
name 12
name 13
But when I use collections.sort() it sorts this way:
name 1
name 11
name 12
name 13
name 2
name 3
Any ideas what the type of sort I'm looking for would be called or how do it?