I have an ArrayList made up of strings. This ArrayList contains...
"60 Minutes" "120 Minutes" "30 Minutes"
If I use Collections.sort(ArrayList);
it results in "120 Minutes" first. This is because the "1" in "120 is obviously smaller than the "3" in "30"
Is there a simple way I can sort this ArrayList so that it shows up as...
"30 Minutes" "60 Minutes" "120 Minutes"