I am attempting to scrape as much as I can from certain web pages and/or emails. Date is giving me the most trouble.
I can code this, and have started, but I wondered if anyone has a solution already written, that they would share. I would like such a function, when passed 'Input' to return a date variable. At minimum, it should handle the following:
I can code this, and have started, but I wondered if anyone has a solution already written, that they would share. I would like such a function, when passed 'Input' to return a date variable. At minimum, it should handle the following:
Code:
Input Intepreted as Date American ------------ ------------- ----------------------- "4/7/05" 7 April, 2005 #4/7/05# "8/6" 8 June, 2009 #6/8/09# "8/2002" 1 August, 2002 #8/1/02# "August 03" 1 August, 2003 #8/1/03# "4.6.06" 4 June, 2006 #7/4/06# "8th of March" 8 March, 2009 #3/8/09# "8 th of Mar" 8 March, 2009 #3/8/09# "December 17 th" 17 December, 2009 #12/17/09# "Dec 17th" 17 December, 2009 #12/17/09# "August 2009" 1 August, 2009 #8/1/09# "Aug09" 1 August, 2009 #8/1/09# "September" 1 September, 2009 #9/1/09#
Comment