I have two date strings (taken from user input and can vary greatly)
s1 = '2011:10:01:10:30:00'
s2 = '2011:10:01:11:15:00'
I wish to find the difference between the two as minutes.
How should I proceed to tackle this ?
|
I have two date strings (taken from user input and can vary greatly)
I wish to find the difference between the two as minutes. How should I proceed to tackle this ?
| |||||
feedback
|
If you need to handle arbitrary datetime formats, I don't believe the built in datetime library will do that for you. Perhaps check out something like: | ||||
|
feedback
|
|
Use datetime to parse the string and convert into a base epoch time. Do the math. Convert back:
If you are looking for arbitrary date string parsing, check out DateUtil and the parse function. | ||||
|
feedback
|
|
Using the | ||||
|
feedback
|
|
The
| ||||
|
feedback
|