当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript CDate 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript CDate 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 285 ::
收藏到网摘: n/a

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"在所有语言中不一定代表为一个月份)

Syntax
语法

CDate(date)

Parameter
参数
Description
描述
date Required. Any valid date expression (like Date() or Now())
必须的。任何有效的日期表达式(如 Date()或Now())

Example 1
举例 1

d="April 22, 2001"
if IsDate(d) then
document.write(CDate(d))
end if
Output:
2/22/01

Example 2
举例 2

d=#2/22/01#
if IsDate(d) then
document.write(CDate(d))
end if
Output:
2/22/01

Example 3
举例 3

d="3:18:40 AM"
if IsDate(d) then
document.write(CDate(d))
end if
Output:
3:18:40 AM


Try-It-Yourself Demos
演示

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将数字转换成时间对象

评论 (0) All

登陆 | 还没注册?