I've got interview task to do. I need to calculate number of dates between to dates WITHOUT using Date/DateTime/TimeSpan classes to do that.
How to do that by using the String class only?
Best Regards //vamone
You can't without knowing which Culture the date is tied to.
You must first know which Culture we are talking about, then you can identify separators and date parts with the DateFormat object.
Then just use the Split method passing date separators in, so you can retrieve each Date part and perform your computations.
But you also have to define months duration (28 days, 30 days, 31 days), not to mention leap years.
To determine leap-years you can implement the following algorithm
if (year is not divisible by 4) then (it is a common year)
else if (year is not divisible by 100) then (it is a leap year)
else if (year is not divisible by 400) then (it is a common year)
else (it is a leap year)
For months duration declare an Array of twelve items to store months duration and use the month number as an index to retrieve the length of each month.
It's more normal to convert your date into a Julian day number:
To call that you need to first parse your date string into month, day and year:
Then you can convert the two dates into Julian format and subtract them to find the difference in days.
Here's an example which shows that the result is the same via Julian compared to using DateTime and TimeSpan: