c++ builder xe2 字符串转日期

简介: TFormatSettings * fmt = new TFormatSettings; fmt->ShortDateFormat = L"yy-mm-dd"; fmt->DateSeparator = L'-'; fmt->LongTimeFormat =...
    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秒"));

 

相关文章
|
5月前
String字符串的替换 生成新的字符串
String字符串的替换 生成新的字符串
34 0
|
存储 Java 编译器
==和equals判等、空串和null串、字符串常用API(一)
==和equals判等、空串和null串、字符串常用API(一)
232 0
==和equals判等、空串和null串、字符串常用API(一)
|
存储 安全 Java
==和equals判等、空串和null串、字符串常用API(二)
==和equals判等、空串和null串、字符串常用API(二)
302 0
==和equals判等、空串和null串、字符串常用API(二)
|
Java
JAVA字符串格式化-String.format()的使用
JAVA字符串格式化-String.format()的使用
151 0
JAVA字符串格式化-String.format()的使用
String.format()字符串常规类型格式化!
String.format()字符串常规类型格式化的两种重载方式
372 0
string.replace 用变量替换
string.replace 用变量替换
167 0
|
SQL Java 数据安全/隐私保护
MessageFormat.format 字符串的模板替换
项目目前在消息的模版,模版中需要替换很多参数,比方说“用户名”,“日期”等等。不过目前没有想到更好的替换参数的方法,所以目前只能使用一个比较简单的方式来实现。这个方式太死板,参数对应必须要在代码中写死,若是在模版中多加一个参数,那么就要修改Java类中的代码,非常不好。
1775 0
|
C#
C#.ToString()格式大全
原文: C#.ToString()格式大全 C#.ToString()格式大全     stringstr1=string.
1088 0