小程式中的時間日期 與 字串的轉化

2021-08-07 18:24:29 字數 837 閱讀 7172

普通的程式編輯裡,比較重要的乙個小細節處理就是  字串與時間日期的處理。記錄一下筆記。留待大家和自己學習使用。

1.時間 轉字串

var mydate = new date(); 

mydate.tolocaledatestring();可以獲取當前日期

mydate.tolocaletimestring(); 可以獲取當前時間

擴充套件:mydate.getyear(); //獲取當前年份(2位)

mydate.getfullyear(); //獲取完整的年份(4位,1970-????)

mydate.getmonth(); //獲取當前月份(0-11,0代表1月)

mydate.getdate(); //獲取當前日(1-31)

mydate.getday(); //獲取當前星期x(0-6,0代表星期天)

mydate.gettime(); //獲取當前時間(從1970.1.1開始的

毫秒數)

mydate.gethours(); //獲取當前小時數(0-23)

mydate.getminutes(); //獲取當前分鐘數(0-59)

mydate.getseconds(); //獲取當前秒數(0-59)

mydate.getmilliseconds(); //獲取當前

毫秒數(0-999)

mydate.tolocalestring( ); //獲取日期與時間

然後根據自己的需要將上述字串自由組合即可。
2.字串轉日期
date=new date(string);

根據時間日期格式從字串中解析日期時間

根據時間日期格式從字串中解析日期時間 function strtodtfmt const s,fmt string dft tdatetime tdatetime function strtodtfmt const s,fmt string dft tdatetime tdatetime varpt...

常見時間日期格式與字串之間的轉換

public class timeformat yyyymmddhhmmss param date return public static string datetostring date date yyyy mm dd hh mm ss param date return public stat...

sql server日期時間轉字串

一 sql server日期時間函式 sql server中的日期與時間函式 1.當前系統日期 時間 select getdate 2.dateadd 在向指定日期加上一段時間的基礎上,返回新的 datetime 值 例如 向日期加上2天 select dateadd day,2,2004 10 1...