So far I have
set x { a really long comma delimited list which has been spilt}
set dateList2 [lrange $x 12 17]
06/30/2012 05/31/2011 {} {} {} {}
Here I need to pick out 06/302012 as its the one closest to current date of 10/22/2013. I tried lsort, but I am not getting reliable results. I can always do expr to compare, but I don’t want to do that if i have all of the dates populated.
Help?
Vidya