eg. var tm : string; dt : tdatetime;

tm := '2009-08-21T09:11:21Z'; dt := ?

I know I can parse it manually but I wonder if there is built-in function or win32 api function to do this ?

Any help would be appreciated.

link|improve this question

73% accept rate
Ended up writing my own class to deal with this, and to fully comply with the standard it was quite a complex one. Would be interested in any quicker solutions for this question. – Gerard Oct 20 '09 at 23:16
2  
The 'standard' being ISO 8601 – Gerard Oct 20 '09 at 23:18
Related question: stackoverflow.com/questions/1438870/… – mghie Oct 21 '09 at 4:36
feedback

3 Answers

up vote 3 down vote accepted

https://forums.codegear.com/thread.jspa?threadID=16074

link|improve this answer
2  
I like the idea of using the XSBuiltIns functions - don't reinvent the wheel. – Gerry Coll Oct 21 '09 at 3:25
1  
There is bug in XMLTimeToDateTime qc.embarcadero.com/wc/qcmain.aspx?d=9547. After I apply fix, it's working now. Thanks! – Irwan Oct 21 '09 at 4:10
Also does not handle short format dates. 20091021T002900 is a valid ISO8601 date. – Мסž May 29 '11 at 0:31
that link is now dead – beerwin May 17 at 6:05
feedback

I don't know why there are so many people shooting their mouth off when they don't know what they are talking about? I have to do this menial work; Is it a RAD tool? I sometimes find Delphi has a real superb architecture, though.

procedure setISOtoDateTime(strDT: string);
var
  // Delphi settings save vars
  ShortDF, ShortTF : string;
  TS, DS : char;
  // conversion vars
  dd, tt, ddtt: TDateTime;
begin
  // example datetime test string in ISO format
  strDT := '2009-07-06T01:53:23Z';

  // save Delphi settings
  DS := DateSeparator;
  TS := TimeSeparator;
  ShortDF := ShortDateFormat;
  ShortTF := ShortTimeFormat;

  // set Delphi settings for string to date/time
  DateSeparator := '-';
  ShortDateFormat := 'yyyy-mm-dd';
  TimeSeparator := ':';
  ShortTimeFormat := 'hh:mm:ss';

  // convert test string to datetime
  try

    dd := StrToDate( Copy(strDT, 1, Pos('T',strDT)-1) );
    tt := StrToTime( Copy(strDT, Pos('T',strDT)+1, 8) );
    ddtt := trunc(dd) + frac(tt);

  except
    on EConvertError do
      ShowMessage('Error in converting : ' + strDT);
  end;

  // restore Delphi settings
  DateSeparator := DS;
  ShortDateFormat := ShortDF;
  TimeSeparator := TS;
  ShortTimeFormat := ShortTF;

  // display test string
  ShowMessage ( FormatDateTime('mm/dd/yyyy hh:mm:ss', ddtt) );
end;

http://coding.derkeiler.com/Archive/Delphi/comp.lang.pascal.delphi.misc/2006-08/msg00190.html

link|improve this answer
feedback

This looks like an internet protocol related activity, so you should have no problems in using the Win32 API for this. However note, that Windows does not correctly support conversion to/from UTC for historical dates that are more than approximately 20 years old - Windows simply doesn't have enough details in its time zone settings for that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.