utc时间的问题 ( 积分: 100 )

  • 主题发起人 主题发起人 R_Baggio
  • 开始时间 开始时间
R

R_Baggio

Unregistered / Unconfirmed
GUEST, unregistred user!
请教:
我有一个字符串 S :String;
S := '14:00:00.222 UTC Sun Jul 01 2007';
请问如何转换成 TDateTime 类型呢?
 
看来你只能自己做个转换过程了。呵呵
uses StrUtils;

Var
Year_,Month_,Day_,Times_,M_EN:String;

S:=UpperCase(S);
Year_:=RightStr(S,4);
Month_:=Copy(S,22,3);
Day_:=Copy(S,26,2);
Times_:=LeftStr(S,12);
If month_='JAN' then Month_:='1'
If ......
Result:=StrToDateTime(Year_+'-'+Month_+'-'+Day_+' '+Times_);
 
如果要这么搞,我也会。但这个办法似乎太笨了吧。
不知道有无什么函数可以来搞的?
 
好像没人知道么。
那看来先只能这么搞了。
谢谢sedwen。我给你加上分了。
 

Similar threads

S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
913
SUNSTONE的Delphi笔记
S
D
回复
0
查看
839
DelphiTeacher的专栏
D
D
回复
0
查看
845
DelphiTeacher的专栏
D
D
回复
0
查看
679
DelphiTeacher的专栏
D
后退
顶部