private int getweekofcurrdate(datetime p_time)
2. //datecode
system.globalization.gregoriancalendar gc = new system.globalization.gregoriancalendar();
int weekofyear = gc.getweekofyear(datetime.now, system.globalization.calendarweekrule.firstday, dayofweek.monday);//0:sunday,1:monday
string week = convert.tostring(weekofyear);
if (week.length == 1)
datecode = datetime.now.year.tostring().substring(2, 2) + week;
C 根據日期計算日期週數
當我們知道乙個日期後,有的時候想知道當前日期是當年的第幾周 如我們做週報計畫什麼的就可能遇到 一周的第一天是週幾有兩種說法,有的是以周一圍一周的第一天,有的是以週日為一周的第一天,下面根據兩種情況分別來計算 一 以週日為一周的第一天 根據日期計算日期週數 以週日為一周的第一天 日期 日期週數 pri...
ios 計算月數 週數 天數
通常計算天數的的 nscalendar gregorian nscalendar alloc initwithcalendaridentifier nsgregoriancalendar gregorian setfirstweekday 2 nsdateformatter dateformatte...
python中根據時間獲取週數,通過週數獲取時間
時間 時間和週數 import time import datetime 獲取今天是第幾周 print time.strftime w 獲取當前是週幾 0 6,0代表周一 today datetime.datetime.now weekday 獲取指定日期屬於當年的第幾周 week datetime...