以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 字符串转日期失败的程度问题 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=184559) |
-- 作者:zsxx999ja -- 发布时间:2022/12/13 17:46:00 -- 字符串转日期失败的程度问题 Dim s As String = "2011121412:05:01" Dim d As Date = CDate(s.Substring(0,4) & "-" & s.Substring(4,2) & "-" & s.Substring(6,2) & " " & s.Substring(8)) 1、如何判断转换失败?2、要求程序继续运行如何写
|
-- 作者:有点蓝 -- 发布时间:2022/12/13 20:46:00 -- 参考:http://www.foxtable.com/webhelp/topics/0324.htm |