輸入某個時間的字串獲取對應的年,指定的天和星期

2021-06-20 13:37:18 字數 535 閱讀 4976

比如輸入2014-02-17,則輸出的形式是2023年2月17日星期-,主要是專案需求中在office程式設計中隊模板的日期進行格式調整要獲取年月日

/**根據指定的型別獲取指定的年指定天和星期數

* @param date

* @return

*/public  string getday(string date);

******dateformat df = new ******dateformat("yyyy-mm-dd");

string day="";

string year=date.substring(0,4)+"年";

string month="";

string editdate="";

if("0".equals(date.substring(5,6)))else

try catch (parseexception e)  

editdate=year+","+month+","+day;

return editdate;

}

Python 獲取時間字串

time.asctime time.localtime time.time time.clock 這個函式第一次呼叫為當前的時間戳 以後的每次呼叫,為和第一次呼叫的時間間隔 這個函式用來計算每個步驟的執行時間,非常有用 輸出特定格式的時間字串 使用函式 time.strftime isotimefo...

字串的輸入與輸入

一 使用陣列的方法 缺點 不能接受含有空格的字串 char s 1000 scanf s s printf s s 先定義字元變數s 用char s表示 然後在定義變數s後面加上,裡面寫上資料大小。一般沒告訴資料範圍,資料一般開1000就行。例如,資料是100,我們開110就行。然後用輸入和輸出函式...

python獲取時間字串的月份數

時間字串如 2020 07 2021 02 獲取這個字串之間相差的月份數 如下 from datetime import datetime defget months start month str,end month str 獲取時間字串中的月份數 param start month str 開始...