首页 > 编程 > VBScript > 正文

用VBSrcipt判断是否是日期

2020-06-26 18:06:31
字体:
来源:转载
供稿:网友
<SCRIPT LANGUAGE="vbScript"> 
<!-- 
'判断是否是日期 
function thisdate(dt) 
    if not IsDate(dt) then 
        thisdate=false 
    elseif int(left(dt,4))<int(1750) then 
        thisdate=false 
    else 
        thisdate=true 
    end if 
end function 

//--> 
</SCRIPT>
 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表