datetime dt = datetime.now;
label1.text = dt.tostring();//2005-11-5 13:21:25
label2.text = dt.tofiletime().tostring();//127756416859912816
label3.text = dt.tofiletimeutc().tostring();//127756704859912816
label4.text = dt.tolocaltime().tostring();//2005-11-5 21:21:25
label5.text = dt.tolongdatestring().tostring();//2023年11月5日
label6.text = dt.tolongtimestring().tostring();//13:21:25
label7.text = dt.tooadate().tostring();
label8.text = dt.toshortdatestring().tostring();//2005-11-5
label9.text = dt.toshorttimestring().tostring();//13:21
label10.text = dt.touniversaltime().tostring();//2005-11-5 5:21:25
?2005-11-5 13:30:28.4412864
label1.text = dt.year.tostring();//2005
label2.text = dt.date.tostring();//2005-11-5 0:00:00
label3.text = dt.dayofweek.tostring();//saturday
label4.text = dt.dayofyear.tostring();//309
label5.text = dt.hour.tostring();//13
label6.text = dt.millisecond.tostring();//441
label7.text = dt.minute.tostring();//30
label8.text = dt.month.tostring();//11
label9.text = dt.second.tostring();//28
label10.text = dt.ticks.tostring();//632667942284412864
label11.text = dt.timeofday.tostring();
label1.text = dt.tostring();//2005-11-5 13:47:04
label2.text = dt.addyears(1).tostring();//2006-11-5 13:47:04
label3.text = dt.adddays(1.1).tostring();//2005-11-6 16:11:04
label4.text = dt.addhours(1.1).tostring();//2005-11-5 14:53:04
label5.text = dt.addmilliseconds(1.1).tostring();//2005-11-5 13:47:04
label6.text = dt.addmonths(1).tostring();//2005-12-5 13:47:04
label7.text = dt.addseconds(1.1).tostring();//2005-11-5 13:47:05
label8.text = dt.addminutes(1.1).tostring();//2005-11-5 13:48:10
label9.text = dt.addticks(1000).tostring();//2005-11-5 13:47:04
label10.text = dt.compareto(dt).tostring();//0
= dt.add(?).tostring();//問號為乙個時間段
label1.text = dt.equals("2005-11-6 16:11:04").tostring();//false
label2.text = dt.equals(dt).tostring();//true
label3.text = dt.gethashcode().tostring();//1474088234
label4.text = dt.gettype().tostring();
label5.text = dt.gettypecode().tostring();//datetime
label1.text = dt.getdatetimeformats('s')[0].tostring();//2005-11-05t14:06:25
label2.text = dt.getdatetimeformats('t')[0].tostring();//14:06
label3.text = dt.getdatetimeformats('y')[0].tostring();//2023年11月
label4.text = dt.getdatetimeformats('d')[0].tostring();//2023年11月5日
label5.text = dt.getdatetimeformats('d')[1].tostring();//2005 11 05
label6.text = dt.getdatetimeformats('d')[2].tostring();//星期六 2005 11 05
label7.text = dt.getdatetimeformats('d')[3].tostring();//星期六 2023年11月5日
label8.text = dt.getdatetimeformats('m')[0].tostring();//11月5日
label9.text = dt.getdatetimeformats('f')[0].tostring();//2023年11月5日 14:06
label10.text = dt.getdatetimeformats('g')[0].tostring();//2005-11-5 14:06
label11.text = dt.getdatetimeformats('r')[0].tostring();//sat, 05 nov 2005 14:06:25 gmt
label1.text =? string.format("",dt);//2005-11-5
label2.text =? string.format("",dt);//2023年11月5日
label3.text =? string.format("",dt);//2023年11月5日 14:23
label4.text =? string.format("",dt);//2023年11月5日 14:23:23
label5.text =? string.format("",dt);//2005-11-5 14:23
label6.text =? string.format("",dt);//2005-11-5 14:23:23
label7.text =? string.format("",dt);//11月5日
label8.text =? string.format("",dt);//sat, 05 nov 2005 14:23:23 gmt
label9.text =? string.format("",dt);//2005-11-05t14:23:23
label10.text = string.format("",dt);//14:23
label11.text = string.format("",dt);//14:23:23
label12.text = string.format("",dt);//2005-11-05 14:23:23z
label13.text = string.format("",dt);//2023年11月5日 6:23:23
label14.text = string.format("",dt);//2023年11月
label15.text = string.format("",dt);//2005-11-5 14:23:23?
label16.text = string.format("",dt);
//yyyymm等可以設定,比如label16.text = string.format("",dt);
時間字串處理
nsdate轉化為字串 func strtimenow format string yyyy mm dd hh mm data nsdate nsdate string var formatter nsdateformatter formatter.dateformat format return ...
Python 時間字串
timestring 2016 12 21 10 22 56 print time.mktime time.strptime timestring,y m d h m s 1482286976.0 time.mktime 與 time.localtime 互為還原函式。time.mktime tim...
字串轉時間
由於js傳資料到後台很多時候把時間傳到控制器傳的是字串,這個時候就需要用應該很簡單的方法去轉時間了。可以看到這個input標籤所得到的時間為下圖這個時間。然後斷點看js 裡面得到的時間字串的所有傳到控制器的時候只能用字串來接收他 這裡得到了時間為字串就可以去提交了。第乙個方法是如下 直接宣告date...