当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript CDate 函数
The CDate function converts a valid date and time expression to type Date, and returns the result.
CDate函数能够将有效的日期或是时间表达式转换成为Date类型并返回结果。
Tip: Use the IsDate function to determine if date can be converted to a date or time.
提示:可以使用IsDate函数来判断能否转换成为日期或是时间。
Note: The IsDate function uses local setting to determine if a string can be converted to a date ("January" is not a month in all languages.)
注意:IsDate函数使用的是本地化设置来判断字符串是否能够转换成为日期("January"在所有语言中不一定代表为一个月份)
CDate(date) |
Parameter 参数 | Description 描述 |
---|---|
date | Required. Any valid date expression (like Date() or Now()) 必须的。任何有效的日期表达式(如 Date()或Now()) |
d="April 22, 2001" Output: 2/22/01 |
d=#2/22/01# Output: 2/22/01 |
d="3:18:40 AM" Output: 3:18:40 AM |
Convert a string to a date object
How to use CDate to convert a string to a date.
使用CDate将字符串转换为日期
Convert numbers to a date object
How to use CDate to convert a numbers with separators to a date.
使用CDate将分隔的数字转换成为日期
Convert a string to a time object
How to use CDate to convert a numbers a time object.
使用CDate将数字转换成时间对象