Re: [fpc-pascal] Date conversion question

2008-06-06 Thread [EMAIL PROTECTED]
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

Re: [fpc-pascal] Date conversion question

2008-06-06 Thread Graeme Geldenhuys
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

Re: [fpc-pascal] Date conversion question

2008-06-06 Thread Marco van de Voort
> 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

[fpc-pascal] Date conversion question

2008-06-06 Thread [EMAIL PROTECTED]
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