I have a list of strings, each one contains time like this:
"03:00 AM", "12:30 PM", "16:15"
I need to sort them in order: put "am" times first and compare hours, not just first digits in a string.
|
|
This works for groovy, with all cases you gave:
It basically tries with AM/PM and then tries without it if that fails |
||||
|
All of Java's sorting machinery -- for example, the |
|||
|
|
|
Use the SimpleDateFormat class to determine the time which represents each string and then compare that numeric value when sorting. It looks like the time strings you're dealing with can have different kinds of formats, so I've edited the answer to support strings of format
|
||||
|
|
|
As @Ernest said, you need to use a Comparator. You can do something like this with your list:
|
|||
|
|