I have a collection of dates as strings entered by users over a period of time. Since these came from humans with little or no validation., the formats entered for the dates varies widely. Below are some examples (the leading numbers are for reference only):
- 20th, 21st August 1897
- 31st May, 1st June 1909
- 29th January 2007
- 10th, 11th, 12th May 1954
- 26th, 27th, 28th, 29th, 30th March 2006
- 27th, 28th, 29th, 30th November, 1st December 2006
I would like to parse these dates in c# to end up with sets of DateTime objects, with one DateTime object per day. So (1) above would result in 2 DateTime objects and (6) would result in 5 DateTime objects.
I thought some more about this and the solution became obvious. Tokenize the string and parse the tokens in reverse order. This will retrieve the year, then month then day(s). Here is my solution:
}