c++ builder xe2 字符串转日期

    TFormatSettings * fmt = new TFormatSettings;
    fmt->ShortDateFormat = L"yy-mm-dd";
    fmt->DateSeparator = L'-';
    fmt->LongTimeFormat = L"hh:nn:ss";
    fmt->TimeSeparator = L':';
    UnicodeString str = L"13-09-12 09:23:43";
    TDateTime dt = StrToDateTime(str,*fmt);
    delete fmt;
    ShowMessage(dt.FormatString("yyyy年,mm月,dd日,hh时,nn分钟,ss秒"));
原文地址:https://www.cnblogs.com/zhangdongsheng/p/3302442.html