I have in interesting issue, I need to sort a list of items BY DATE in a text file which look like this:
http://www.boatus.com/sailing,1/21/2013 9:00 PM
http://www.boatus.com/powerboat,3/21/2012 10:00 PM
http://www.boatus.com/games.html,5/20/2013 10:00 PM
http://www.boatus.com/,4/11/2013 10:00 PM
http://www.boatus.com/pressroom/prrss.asp,4/21/2013 10:00 PM
http://www.boatus.com/,4/20/2013 9:00 PM
I also only need say 100 days of history. So if today is 5/10/2013, I only want from 1/30/2013 - 5/10/2013. Hence the list above should then look like this after sorting :
http://www.boatus.com/,4/11/2013 10:00 PM
http://www.boatus.com/,4/20/2013 9:00 PM
http://www.boatus.com/pressroom/prrss.asp,4/21/2013 10:00 PM
http://www.boatus.com/games.html,5/20/2013 10:00 PM
Hence only the past 100 days are listed in order by date.