A Alden Zhou Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-23 #1 能否将“Tue, 23 May 2000 03:58:40 -0400” 转换成 “2000-5-23 03:58:40”? DELPHI中有没有现成的函数呢?
A Alden Zhou Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-23 #4 用FormatDateTime,你试过吗? 如果真的可行,麻烦详细说明一下好吗? 我到是试过了,不过不成功!
Z Zephyr Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-24 #5 StrToDate StrToTime StrToDateTime FormatDateTime
F Fudei Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-24 #6 >>能否将“Tue, 23 May 2000 03:58:40 -0400” >>转换成 “2000-5-23 03:58:40”? Delphi根本就没有转换这种格式的函数,需要自己处理 其实处理较简单,月份字串"May"可以定义一个TMonth数组 或枚举子界类型,包含12个月的值,从源字串取出'May'进行 比较判断转换成数字,其它都可用copy,pos
>>能否将“Tue, 23 May 2000 03:58:40 -0400” >>转换成 “2000-5-23 03:58:40”? Delphi根本就没有转换这种格式的函数,需要自己处理 其实处理较简单,月份字串"May"可以定义一个TMonth数组 或枚举子界类型,包含12个月的值,从源字串取出'May'进行 比较判断转换成数字,其它都可用copy,pos
I iie Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-24 #8 formatdatetime('yyyy-mm-dd hh:nn:ss', date);
A apartment Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-24 #9 可以在sql server里转换: datepart(year,getdate())+"-"+datepart(month,getdate())+"-"+datepart(day,getdate())+" "+datepart(hour,getdate())+":"+datepart(minute,getdate())+":"+datepart(second,getdate())
可以在sql server里转换: datepart(year,getdate())+"-"+datepart(month,getdate())+"-"+datepart(day,getdate())+" "+datepart(hour,getdate())+":"+datepart(minute,getdate())+":"+datepart(second,getdate())
B buptwqs Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-24 #10 试试formatdatetime('yyyy-mm-dd hh:nn:ss', date);
温 温柔一刀 Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-24 #11 为什么不换一个角度考虑, >>“Tue, 23 May 2000 03:58:40 -0400” 这个字符串是怎么得来的?
H hhzh426 Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-09 #12 DecodeDate(Date: TDateTime; var Year, Month, Day: Word); DecodeTime(Time: TDateTime; var Hour, Min, Sec, MSec: Word); inttostr(year)+'-'+inttostr(month)+'-'+inttostr(day)=>2000-6-9 timetostr(time)=>19:25:45
DecodeDate(Date: TDateTime; var Year, Month, Day: Word); DecodeTime(Time: TDateTime; var Hour, Min, Sec, MSec: Word); inttostr(year)+'-'+inttostr(month)+'-'+inttostr(day)=>2000-6-9 timetostr(time)=>19:25:45