51Testing软件测试论坛

标题: 日期函数的使用 [打印本页]

作者: 郁金香    时间: 2007-7-19 16:40
标题: 日期函数的使用
我用DATE函数取出的日期格式是这样的:2007-2-3,我现在要这样的格式:2007-02-03,有办法实现吗 ?
作者: xiaonan    时间: 2007-7-19 16:55
自己在format一下
作者: wtucel    时间: 2007-7-19 17:26
查了下,好象没有format函数,只有个FormatDateTime,但是好象实现不了LZ这种,可以这样实现,虽然笨点

tmp=split(Date,"-")
If  tmp(1)<10 then
        tmp(1)="0"+Cstr(tmp(1))
End if
If  tmp(2)<10 then
        tmp(2)="0"+Cstr(tmp(2))
End if
msgbox tmp(0)+"-"+tmp(1)+"-"+tmp(2)
作者: walker1020    时间: 2007-7-19 23:13
楼上的方法是可行的。我就曾经写过类似的函数,就是为了得到有需要的格式的日期
作者: 郁金香    时间: 2007-7-20 11:22
在此谢谢各位的帮助!




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2