1. ホーム
  2. Web プログラミング
  3. ASP プログラミング
  4. アプリケーションのヒント

ASPで短い日付を0から長い2つの日付に書式設定する

2022-01-16 03:32:54

短い日付は2桁以下なので、ページレイアウトの美観に影響するため、次の2つの関数でこの問題を解決することができます。

2020-2-7 短い日付から 2020-02-07 長い日付へ

Function FStime(times)
  Dim years,months,days
   if len(times)=0 then exit function
   years=year(times)
   months=right("0"&months(times),2)
   days=right("0"&day(times),2)
   times=years&"-"&months&"-"&days
   FStime=times
End Function

2020-2-7 23:37:5 の短い日付を 2020-02-07 23:37:05 の長い日付に変更しました。

Function FLtime(times)
  Dim years,months,days,hours,minutes,seconds
   if len(times)=0 then exit function
   years=year(times):months=right("0"&month(times),2)
   days=right("0"&day(times),2):hours=right("0"&hour(times),2)
   minutes=right("0"&minute(times),2):seconds=right("0"&second(times),2)
   FLtime=years&"-"&months&"-"&days&" "&hours&"":"&minutes& ":"&seconds
End Function

Pw_Sys 日付形式変換機能

<%

Rem Pw_Sys date format conversion function

function DateTimeFormat(DateTime,Format)
select case Format
case "1"
DateTimeFormat=""&year(DateTime)&"year"&month(DateTime)&"month"&Right("0" & ; Day(DateTime),2)&"day"
case "2"
DateTimeFormat=""&month(DateTime)&"month"&Right("0" & Day(DateTime),2)&"day"
case "3"
DateTimeFormat=""&year(DateTime)&"-"&month(DateTime)&"-"&Right("0" & ; Day(DateTime),2)&""
case "4"
DateTimeFormat=""&year(DateTime)&"/"&month(DateTime)&"/"&Right("0" & ; Day(DateTime),2)&""
case "5"
DateTimeFormat=""&month(DateTime)&"/"&Right("0" & Day(DateTime),2)&""
case "6"
DateTimeFormat=""&year(DateTime)&"year"&month(DateTime)&"month"&Right("0" & ; Day(DateTime),2)&"Day<font color=red> "&FormatDateTime(DateTime,4)&"</font>"
case "7"
  temp="Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday"
  temp=split(temp,",")
  DateTimeFormat=temp(WeekRight("0" & Day(DateTime),2)-1)
case "8"
DateTimeFormat=""&month(DateTime)&"-"&Right("0" & Day(DateTime),2)&""
case "9"
if len(hour(DateTime)) = 1 then
str="0"&hour(DateTime)
else
str=hour(DateTime)
end if
DateTimeFormat=DateTimeFormat(DateTime,1)&" "&str&":"&Minute(DateTime)
case "10"
DateTimeFormat=""&year(DateTime)&"year"&month(DateTime)&"month"
case else
DateTimeFormat=DateTime
end select
end function

%>


プログラムコード(yyyy-mm-dd形式の月と日を2桁に変換する方法)。

<ブロッククオート

おぼろげな今日
today=Date 'Dateを繰り返し呼び出すのを避けるため、変数に代入する
today=Year(today) & "-" & Right("0" & Month(today),2) & "-" & Right("0" & Day( today),2)

aspのオートコンプリートのための関数

function formatsn(getnum,getbit)
dim formatsnnum,formatsnpre,formatsnj
formatsnnum = getbit - len(getnum)
for formatsnj = 1 to formatsnnum
formatsnpre = formatsnpre & "0"
next
formatsn = formatsnpre & getnum
end function

使用方法

formatsn(getnum,getbit)

ゲトナム数
getbit 合計で何ビットか

上記は、ASPで短い日付を0から2つの長い日付を補うようにフォーマットする方法の詳細ですが、0を補うASP短い日付の詳細については、スクリプトハウスの他の関連記事に注意してください!。