Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在经典 asp 中对一些用户提供的字符串进行一些验证,以确保它们是有效的日期。如何在检查类型不匹配异常时将字符串解析为日期...
到目前为止,它看起来比我想象的要困难得多!
你可以用IsDate这个。
IsDate
这确定该值是日期还是可以转换为日期。
例如(从这里),
x = "January 12, 2009" if IsDate(x) then msgbox(CDate(x)) end if
输出:
1/12/2009