I have a arraylist which is string type. In this arraylist i store some date like
ArrayList<String> date = new ArrayList<String>();
date.add("20-jan-2013 11:32:39 AM");
date.add("21-jan-2013 11:32:39 AM");
date.add("22-jan-2013 11:32:39 AM");
date.add("23-jan-2013 11:32:39 AM");
.
.
.
.
.
.
date.add("29-jan-2013 11:32:39 AM");
More then 20 value in the array list. and my question is how i get the value(date) from arrayList in between two value(date) like from this date 21-jan-2013 11:32:39 AM to 27-jan-2013 11:32:39 AM.
Help me thanks
1 Answer