QTP提示类型不匹配,请各位帮忙看看什么原因
我的代码是mytime=now
timestr=spllit(mytime," ",-1,1)
arrvalue=timestr(0) ' split分出来的年-月-日
arrvalue1=timestr(1)‘时:分:秒
date=split(arrvalue,"-",-1,1) '这个提示类型不匹配,我想把-去掉
time=split(arrvalue1,":",-1,1) '这个能成功取出时分秒,去掉:
print date(0)
print date(1)
print date(2)
print time(0)
print time(1)
print time(2) date和time是关键字,最好不要做为变量使用 mytime=now
timestr=split(mytime," ",-1,1)
arrvalue=timestr(0) ' split分出来的年-月-日
arrvalue1=timestr(1)'时:分:秒
strDate=split(arrvalue,"-",-1,1) '这个提示类型不匹配,我想把-去掉
strTime=split(arrvalue1,":",-1,1) '这个能成功取出时分秒,去掉:
msgbox strDate(0)
print strDate(0)
print strDate(1)
print strDate(2)
print strTime(0)
print strTime(1)
print strTime(2)
谢谢各位,
我想建立一个动态的文件夹,用时间来标识不同的文件,用于自动保存测试Log,
换了种方法用实现了我想要的
mytime=now
myyear=Mid(mytime,1,4)'年
mymonth=Month(mytime) '月
mydate=date(mytime) '日
可以提取出日期和时间
但是还是不理解为什么split时间的时候对于字符“-”拆分时会提示类型不匹配 谢谢3楼,让我理解了,呵呵,小妹学习了
页:
[1]