<コンプリートVBScriptのリファレンス
DateDiff関数は、2つの日付の間の間隔の数を返します。
構文
DateDiff(interval,date1,date2[,firstdayofweek[,firstweekofyear]])
パラメーター | 説明 |
---|---|
interval | 必須。 あなたは日付1とdate2の間の差異を計算するために使用する間隔 以下の値を取ることができます:
|
date1,date2 | 必須。 日付式。 あなたは計算に使用したい二つの日付 |
firstdayofweek | 任意。 曜日を指定します。 以下の値を取ることができます:
|
firstweekofyear | 任意。 年の最初の週を指定します。 以下の値を取ることができます:
|
例
例1
2009年1月31日、および2010年1月31日の間の差:
<%
fromDate="31-Jan-09 00:00:00"
toDate="31-Jan-10 23:59:00"
response.write(DateDiff("yyyy",fromDate,toDate) & "<br />")
response.write(DateDiff("q",fromDate,toDate) & "<br />")
response.write(DateDiff("m",fromDate,toDate) & "<br />")
response.write(DateDiff("y",fromDate,toDate) & "<br />")
response.write(DateDiff("d",fromDate,toDate) & "<br />")
response.write(DateDiff("w",fromDate,toDate) & "<br />")
response.write(DateDiff("ww",fromDate,toDate) & "<br />")
response.write(DateDiff("h",fromDate,toDate) & "<br />")
response.write(DateDiff("n",fromDate,toDate) & "<br />")
response.write(DateDiff("s",fromDate,toDate) & "<br />")
%>
上記のコードの出力は次のようになります。
1
4
12
365
365
52
53
8783
527039
31622340
表示例» 例2
どのように多くの週(start on Monday) 、
2009年12月31日および2012年12月31日の間に:
<%
fromDate=CDate("2009/12/31")
toDate=CDate("2012/12/31")
response.write(DateDiff("w",fromDate,toDate,vbMonday))
%>
上記のコードの出力は次のようになります。
156
表示例» <コンプリートVBScriptのリファレンス