继续这个问题: How to Convert Twitter Timestamp to DateTime?
将twitter日期时间戳转换为TDateTime的代码是什么?
编辑: StrDateTime(const string; TFormatSettings);
可以处理其中一些, 现在只是想弄清楚如何引入新的格式。
答案 0 :(得分:5)
由于我们没有ParseExact函数,您需要在位置上解析时间戳的组件。您可以使用Copy()函数执行此操作。例如:
TheMonthAsString := Copy(TwitterDate,5,3);
TheDayAsString := Copy(TwitterDate,9,2);
etc..
将这些片段转换为整数,然后您可以使用EncodeDateTime(在DateUtils单元中)(感谢Jens!)生成TDateTime。
摘要:将字符串分成时间戳的各个组件,然后使用EncodeDateTime或StrToDateTime将其转换为TDateTime。