vbs

关注公众号 jb51net

关闭
首页 > 脚本专栏 > vbs >

用VBSrcipt判断是否是日期

作者:

用VBSrcipt判断是否是日期
<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>
您可能感兴趣的文章:
阅读全文