Search for scandatetime in
http://svn.freepascal.org/cgi-bin/viewvc.cgi/trunk/rtl/objpas/dateutil.inc?view=markup
Have a look at the documentation for formatdatetime and the comments in the
source to get an idea how to use it.
ScanDateTime('?MM?dd?hh?nn?ss',str); // seems to work fin
I would say the easiest would be to extract the different parts: Year,
Month, Day, Hour, Min, Sec and then use EncodeDateTime() to return a
TDateTime type.
I have implemented (with unit tests) the last format (ISO 8601) in the
tiOPF project. I use that for storing my dates in a database. See the
t
> I have a little project in which I need to convert various string
> encoded in various date format to TDateTime.
> For the same date, I'll have:
In the upcoming 2.2.2, there will be a scandatetime routine in datetuils.
One could copy this code also to 2.2.0 projects though.
Search for scandate
Hello,
I have a little project in which I need to convert various string
encoded in various date format to TDateTime.
For the same date, I'll have:
'2008-05-10 21:49:21'
'2008:05:10 21:49:21'
'2008-05-10T19:49:21Z'
I am no expert with date manipulation so I am asking:
For the first type of st