Is there a Comparator
implementation in Guava to sort strings in a "natural" way that may contain numbers?
Eg:
"a 8"
"a 9"
"a 10"
I found some interesting links regarding this, but it looks like there is nothing in guava to do the job...
StackOverflow: "Sort on a String that may contain a number"
A good explanation of the: The Alphanum Algorithm