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短い日付の詳細については、スクリプトハウスの他の関連記事に注意してください!。
関連
-
ファイルが存在するかどうかを判断するasp関数
-
aspはプロジェクトの終了時刻を計算するためにWeekday関数を使用します。
-
数字を漢数字(大文字の金額)に変換するASP機能
-
asp createTextFileはutf8をサポートしたテキストファイルを生成します。
-
SharePoint Server 2019の新機能をご紹介します。
-
ASPメッセージプロンプト機能およびリターンまたはターン
-
aspのドメインアクセス制限コード
-
Perlによるディレクトリの探索とLinuxコマンドによるログの解析 コード例共有
-
perl で書かれた乱数話法プログラム (rand random function)
-
コンストラクタでのPerlメソッド使用法入門
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
ASPでimgタグのstyle属性を削除し、srcの正規関数だけを残す。
-
ASPは、コンテンツ内のすべての画像パスSRCを正規表現で抽出するためのコードです。
-
asp バッチの追加・変更・削除操作のサンプルコード
-
FluentValidationを使ったルール検証のためのNET Core
-
C言語による配列への要素の追加と削除
-
ASPでフォルダーの存在を検出し、存在しない場合は自動的に作成する方法
-
従来のいくつかの方法によるASPエラーの捕捉
-
Perlの単一行コメントと複数行コメントの紹介
-
スペースがセパレータである場合の perl qw 問題の解決法
-
perlのsrand()とtime関数の使い方の紹介