函数参考


_DateIsValid

检查给定的日期是否是一个有效的日期(格式).

#Include <Date.au3>
_DateIsValid($sDate)

参数

$sDate 要检查的日期.

返回值

成功: 返回 1.
失败: 如果指定日期无效,返回 0.

注意/说明

这个函数可以支持下面的格式:
"yyyy/mm/dd[ hh:mm[:ss]]" 或者 "yyyy/mm/dd[Thh:mm[:ss]]"
"yyyy-mm-dd[ hh:mm[:ss]]" 或者 "yyyy-mm-dd[Thh:mm[:ss]]"
"yyyy.mm.dd[ hh:mm[:ss]]" 或者 "yyyy.mm.dd[Thh:mm[:ss]]"
上方Y代表年,M代表月,D代表日,H代表时,m代表分(和前方区别),S代表秒

相关

示例/演示


#include <Date.au3>

Local $sDate = @YEAR & "/" & @MON & "/" & @MDAY

If _DateIsValid($sDate) Then
    MsgBox(4096, "Valid Date", "The specified date is valid.")
Else
    MsgBox(4096, "Valid Date", "The specified date is invalid.")
EndIf