Làm cách nào để tôi tìm thấy đầu tuần (cả Chủ nhật và Thứ Hai) chỉ biết thời gian hiện tại trong C #?
Cái gì đó như:
DateTime.Now.StartWeek(Monday);
Làm cách nào để tôi tìm thấy đầu tuần (cả Chủ nhật và Thứ Hai) chỉ biết thời gian hiện tại trong C #?
Cái gì đó như:
DateTime.Now.StartWeek(Monday);
Câu trả lời:
Sử dụng một phương pháp mở rộng. Chúng là câu trả lời cho mọi thứ, bạn biết đấy! ;)
public static class DateTimeExtensions
{
public static DateTime StartOfWeek(this DateTime dt, DayOfWeek startOfWeek)
{
int diff = (7 + (dt.DayOfWeek - startOfWeek)) % 7;
return dt.AddDays(-1 * diff).Date;
}
}
Có thể được sử dụng như sau:
DateTime dt = DateTime.Now.StartOfWeek(DayOfWeek.Monday);
DateTime dt = DateTime.Now.StartOfWeek(DayOfWeek.Sunday);
dt
là UTC và đã là sự bắt đầu của tuần ví dụ 2012-09-02 16:00:00Z
đó là Mon, 03 Sep 2012 00:00:00
theo giờ địa phương. Vì vậy, nó cần phải chuyển đổi dt
sang giờ địa phương hoặc làm một cái gì đó thông minh hơn một chút. Nó cũng cần trả về kết quả là UTC nếu đầu vào là UTC.
DateTime.Parse("2012-09-02 16:00:00Z")
trả về tương đương giờ địa phương và phương thức này trả về chính xác cùng thời gian, như một giờ địa phương. Nếu bạn sử dụng DateTime.Parse("2012-09-02 16:00:00Z").ToUniversalTime()
để vượt qua thời gian UTC một cách rõ ràng, phương pháp này trả về chính xác 6 ngày, sớm hơn 16 giờ, dưới dạng thời gian UTC. Nó hoạt động chính xác như tôi mong đợi.
dt
. Tôi đã sử dụngint diff = dt.Date.DayOfWeek - startOfWeek;
Cách nhanh nhất tôi có thể đưa ra là:
var sunday = DateTime.Today.AddDays(-(int)DateTime.Today.DayOfWeek);
Nếu bạn muốn bất kỳ ngày nào khác trong tuần là ngày bắt đầu của bạn, tất cả những gì bạn cần làm là thêm giá trị DayOfWeek vào cuối
var monday = DateTime.Today.AddDays(-(int)DateTime.Today.DayOfWeek + (int)DayOfWeek.Monday);
var tuesday = DateTime.Today.AddDays(-(int)DateTime.Today.DayOfWeek + (int)DayOfWeek.Tuesday);
Một chút dài dòng và nhận thức văn hóa:
System.Globalization.CultureInfo ci =
System.Threading.Thread.CurrentThread.CurrentCulture;
DayOfWeek fdow = ci.DateTimeFormat.FirstDayOfWeek;
DayOfWeek today = DateTime.Now.DayOfWeek;
DateTime sow = DateTime.Now.AddDays(-(today - fdow)).Date;
CultureInfo.CurrentCulture
thay vì kéo nó ra khỏi chuỗi như thế. Có vẻ như một cách kỳ lạ để truy cập nó.
Now
tài sản hai lần. Nếu thời gian hiện tại xảy ra để vượt qua 24:00 (hoặc 12:00 nửa đêm) giữa hai cuộc gọi, ngày sẽ thay đổi.
Sử dụng Fluent DateTime :
var monday = DateTime.Now.Previous(DayOfWeek.Monday);
var sunday = DateTime.Now.Previous(DayOfWeek.Sunday);
public static DateTime Previous(this DateTime start, DayOfWeek day) { do { start = start.PreviousDay(); } while (start.DayOfWeek != day); return start; }
Xấu xí nhưng ít nhất nó cũng trả lại đúng ngày
Với đầu tuần được thiết lập bởi hệ thống:
public static DateTime FirstDateInWeek(this DateTime dt)
{
while (dt.DayOfWeek != System.Threading.Thread.CurrentThread.CurrentCulture.DateTimeFormat.FirstDayOfWeek)
dt = dt.AddDays(-1);
return dt;
}
Không có:
public static DateTime FirstDateInWeek(this DateTime dt, DayOfWeek weekStartDay)
{
while (dt.DayOfWeek != weekStartDay)
dt = dt.AddDays(-1);
return dt;
}
Hãy kết hợp câu trả lời an toàn văn hóa và câu trả lời phương pháp mở rộng:
public static class DateTimeExtensions
{
public static DateTime StartOfWeek(this DateTime dt, DayOfWeek startOfWeek)
{
System.Globalization.CultureInfo ci = System.Threading.Thread.CurrentThread.CurrentCulture;
DayOfWeek fdow = ci.DateTimeFormat.FirstDayOfWeek;
return DateTime.Today.AddDays(-(DateTime.Today.DayOfWeek- fdow));
}
}
dt
thay vì DateTime.Today
, để bọc toán học (offset + 7) % 7
để đảm bảo bù trừ âm, sử dụng quá tải phương thức tham số duy nhất vượt qua văn hóa hiện tại FirstDayOfWeek
làm startOfWeek
đối số và có thể (tùy thuộc vào thông số kỹ thuật) để ép buộc không bù vào mức bù 7 ngày, do đó "Thứ Ba tuần trước" sẽ không trở lại vào hôm nay nếu đó là Thứ Ba.
Đây có thể là một chút hack, nhưng bạn có thể chuyển thuộc tính .DayOfWeek thành int (đó là enum và vì nó không có kiểu dữ liệu cơ bản của nó đã thay đổi thành int) và sử dụng nó để xác định đầu tuần trước .
Nó xuất hiện tuần được chỉ định trong enum DayOfWeek bắt đầu vào Chủ nhật, vì vậy nếu chúng ta trừ đi 1 từ giá trị này sẽ bằng với số ngày thứ Hai trước ngày hiện tại. Chúng ta cũng cần ánh xạ Chủ nhật (0) bằng 7, do đó, 1 - 7 = -6 Chủ nhật sẽ ánh xạ sang Thứ Hai trước: -
DateTime now = DateTime.Now;
int dayOfWeek = (int)now.DayOfWeek;
dayOfWeek = dayOfWeek == 0 ? 7 : dayOfWeek;
DateTime startOfWeek = now.AddDays(1 - (int)now.DayOfWeek);
Mã cho Chủ nhật trước đơn giản hơn vì chúng tôi không phải thực hiện điều chỉnh này: -
DateTime now = DateTime.Now;
int dayOfWeek = (int)now.DayOfWeek;
DateTime startOfWeek = now.AddDays(-(int)now.DayOfWeek);
Cho thứ hai
DateTime startAtMonday = DateTime.Now.AddDays(DayOfWeek.Monday - DateTime.Now.DayOfWeek);
Cho chủ nhật
DateTime startAtSunday = DateTime.Now.AddDays(DayOfWeek.Sunday- DateTime.Now.DayOfWeek);
using System;
using System.Globalization;
namespace MySpace
{
public static class DateTimeExtention
{
// ToDo: Need to provide culturaly neutral versions.
public static DateTime GetStartOfWeek(this DateTime dt)
{
DateTime ndt = dt.Subtract(TimeSpan.FromDays((int)dt.DayOfWeek));
return new DateTime(ndt.Year, ndt.Month, ndt.Day, 0, 0, 0, 0);
}
public static DateTime GetEndOfWeek(this DateTime dt)
{
DateTime ndt = dt.GetStartOfWeek().AddDays(6);
return new DateTime(ndt.Year, ndt.Month, ndt.Day, 23, 59, 59, 999);
}
public static DateTime GetStartOfWeek(this DateTime dt, int year, int week)
{
DateTime dayInWeek = new DateTime(year, 1, 1).AddDays((week - 1) * 7);
return dayInWeek.GetStartOfWeek();
}
public static DateTime GetEndOfWeek(this DateTime dt, int year, int week)
{
DateTime dayInWeek = new DateTime(year, 1, 1).AddDays((week - 1) * 7);
return dayInWeek.GetEndOfWeek();
}
}
}
Kết hợp tất cả lại với Toàn cầu hóa và cho phép chỉ định ngày đầu tuần là một phần của cuộc gọi chúng tôi có
public static DateTime StartOfWeek ( this DateTime dt, DayOfWeek? firstDayOfWeek )
{
DayOfWeek fdow;
if ( firstDayOfWeek.HasValue )
{
fdow = firstDayOfWeek.Value;
}
else
{
System.Globalization.CultureInfo ci = System.Threading.Thread.CurrentThread.CurrentCulture;
fdow = ci.DateTimeFormat.FirstDayOfWeek;
}
int diff = dt.DayOfWeek - fdow;
if ( diff < 0 )
{
diff += 7;
}
return dt.AddDays( -1 * diff ).Date;
}
var now = System.DateTime.Now;
var result = now.AddDays(-((now.DayOfWeek - System.Threading.Thread.CurrentThread.CurrentCulture.DateTimeFormat.FirstDayOfWeek + 7) % 7)).Date;
Điều này sẽ cung cấp cho bạn nửa đêm vào Chủ nhật đầu tiên của tuần:
DateTime t = DateTime.Now;
t -= new TimeSpan ((int) t.DayOfWeek, t.Hour, t.Minute, t.Second);
Điều này mang lại cho bạn thứ Hai đầu tiên vào lúc nửa đêm:
DateTime t = DateTime.Now;
t -= new TimeSpan ((int) t.DayOfWeek - 1, t.Hour, t.Minute, t.Second);
hãy thử với điều này trong c # .Với mã này, bạn có thể nhận được cả ngày đầu tiên và ngày cuối cùng của một tuần nhất định. Chủ nhật là ngày đầu tiên và thứ bảy là ngày cuối cùng nhưng bạn có thể đặt cả hai ngày theo văn hóa của mình
DateTime firstDate = GetFirstDateOfWeek(DateTime.Parse("05/09/2012").Date,DayOfWeek.Sunday);
DateTime lastDate = GetLastDateOfWeek(DateTime.Parse("05/09/2012").Date, DayOfWeek.Saturday);
public static DateTime GetFirstDateOfWeek(DateTime dayInWeek, DayOfWeek firstDay)
{
DateTime firstDayInWeek = dayInWeek.Date;
while (firstDayInWeek.DayOfWeek != firstDay)
firstDayInWeek = firstDayInWeek.AddDays(-1);
return firstDayInWeek;
}
public static DateTime GetLastDateOfWeek(DateTime dayInWeek, DayOfWeek firstDay)
{
DateTime lastDayInWeek = dayInWeek.Date;
while (lastDayInWeek.DayOfWeek != firstDay)
lastDayInWeek = lastDayInWeek.AddDays(1);
return lastDayInWeek;
}
Đã thử một số nhưng không giải quyết được vấn đề với một tuần bắt đầu vào thứ Hai, dẫn đến việc cho tôi vào thứ Hai tới vào Chủ nhật. Vì vậy, tôi đã sửa đổi nó một chút và làm cho nó hoạt động với mã này:
int delta = DayOfWeek.Monday - DateTime.Now.DayOfWeek;
DateTime monday = DateTime.Now.AddDays(delta == 1 ? -6 : delta);
return monday;
dt.AddDays(DayOfWeek.Monday - dt.DayOfWeek);
Bước 1: Tạo một lớp tĩnh
public static class TIMEE
{
public static DateTime StartOfWeek(this DateTime dt, DayOfWeek startOfWeek)
{
int diff = (7 + (dt.DayOfWeek - startOfWeek)) % 7;
return dt.AddDays(-1 * diff).Date;
}
public static DateTime EndOfWeek(this DateTime dt, DayOfWeek startOfWeek)
{
int diff = (7 - (dt.DayOfWeek - startOfWeek)) % 7;
return dt.AddDays(1 * diff).Date;
}
}
Bước 2: Sử dụng lớp này để có được cả ngày bắt đầu và ngày kết thúc trong tuần
DateTime dt =TIMEE.StartOfWeek(DateTime.Now ,DayOfWeek.Monday);
DateTime dt1 = TIMEE.EndOfWeek(DateTime.Now, DayOfWeek.Sunday);
(6 - (dt.DayOfWeek - startOfWeek)) % 7
cho tôi so với các bài kiểm tra đơn vị tôi đã viết.
Phương thức sau sẽ trả về DateTime mà bạn muốn. Vượt qua đúng vào Chủ nhật là ngày đầu tuần, sai cho thứ Hai:
private DateTime getStartOfWeek(bool useSunday)
{
DateTime now = DateTime.Now;
int dayOfWeek = (int)now.DayOfWeek;
if(!useSunday)
dayOfWeek--;
if(dayOfWeek < 0)
{// day of week is Sunday and we want to use Monday as the start of the week
// Sunday is now the seventh day of the week
dayOfWeek = 6;
}
return now.AddDays(-1 * (double)dayOfWeek);
}
Cảm ơn các ví dụ. Tôi cần phải luôn luôn sử dụng "Hiện tại" trong ngày đầu tuần và đối với một mảng tôi cần biết chính xác Daynumber .. vì vậy đây là các tiện ích mở rộng đầu tiên của tôi:
public static class DateTimeExtensions
{
//http://stackoverflow.com/questions/38039/how-can-i-get-the-datetime-for-the-start-of-the-week
//http://stackoverflow.com/questions/1788508/calculate-date-with-monday-as-dayofweek1
public static DateTime StartOfWeek(this DateTime dt)
{
//difference in days
int diff = (int)dt.DayOfWeek - (int)CultureInfo.CurrentCulture.DateTimeFormat.FirstDayOfWeek; //sunday=always0, monday=always1, etc.
//As a result we need to have day 0,1,2,3,4,5,6
if (diff < 0)
{
diff += 7;
}
return dt.AddDays(-1 * diff).Date;
}
public static int DayNoOfWeek(this DateTime dt)
{
//difference in days
int diff = (int)dt.DayOfWeek - (int)CultureInfo.CurrentCulture.DateTimeFormat.FirstDayOfWeek; //sunday=always0, monday=always1, etc.
//As a result we need to have day 0,1,2,3,4,5,6
if (diff < 0)
{
diff += 7;
}
return diff + 1; //Make it 1..7
}
}
Không ai có vẻ đã trả lời chính xác này. Tôi sẽ dán giải pháp của tôi ở đây trong trường hợp bất cứ ai cần nó. Các mã sau đây làm việc bất kể nếu ngày đầu tiên của tuần này là một thứ hai hoặc một chủ nhật hay cái gì khác.
public static class DateTimeExtension
{
public static DateTime GetFirstDayOfThisWeek(this DateTime d)
{
CultureInfo ci = System.Threading.Thread.CurrentThread.CurrentCulture;
var first = (int)ci.DateTimeFormat.FirstDayOfWeek;
var current = (int)d.DayOfWeek;
var result = first <= current ?
d.AddDays(-1 * (current - first)) :
d.AddDays(first - current - 7);
return result;
}
}
class Program
{
static void Main()
{
System.Threading.Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo("en-US");
Console.WriteLine("Current culture set to en-US");
RunTests();
Console.WriteLine();
System.Threading.Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo("da-DK");
Console.WriteLine("Current culture set to da-DK");
RunTests();
Console.ReadLine();
}
static void RunTests()
{
Console.WriteLine("Today {1}: {0}", DateTime.Today.Date.GetFirstDayOfThisWeek(), DateTime.Today.Date.ToString("yyyy-MM-dd"));
Console.WriteLine("Saturday 2013-03-02: {0}", new DateTime(2013, 3, 2).GetFirstDayOfThisWeek());
Console.WriteLine("Sunday 2013-03-03: {0}", new DateTime(2013, 3, 3).GetFirstDayOfThisWeek());
Console.WriteLine("Monday 2013-03-04: {0}", new DateTime(2013, 3, 4).GetFirstDayOfThisWeek());
}
}
Modulo trong C # hoạt động không tốt cho -1mod7 (nên là 6, c # trả về -1) vì vậy ... giải pháp "oneliner" cho việc này sẽ giống như thế này :)
private static DateTime GetFirstDayOfWeek(DateTime date)
{
return date.AddDays(-(((int)date.DayOfWeek - 1) - (int)Math.Floor((double)((int)date.DayOfWeek - 1) / 7) * 7));
}
Tương tự cho cuối tuần (theo kiểu của @Compile Đây là câu trả lời):
public static DateTime EndOfWeek(this DateTime dt)
{
int diff = 7 - (int)dt.DayOfWeek;
diff = diff == 7 ? 0 : diff;
DateTime eow = dt.AddDays(diff).Date;
return new DateTime(eow.Year, eow.Month, eow.Day, 23, 59, 59, 999) { };
}
Bạn có thể sử dụng thư viện ô tuyệt vời :
using nVentive.Umbrella.Extensions.Calendar;
DateTime beginning = DateTime.Now.BeginningOfWeek();
Tuy nhiên, họ làm dường như đã được lưu trữ thứ hai là ngày đầu tiên của tuần (xem tài sản nVentive.Umbrella.Extensions.Calendar.DefaultDateTimeCalendarExtensions.WeekBeginsOn
), do đó giải pháp cục bộ trước là một chút tốt hơn. Thật không may.
Chỉnh sửa : nhìn kỹ hơn vào câu hỏi, có vẻ như Umbrella thực sự cũng có thể hoạt động cho điều đó:
// Or DateTime.Now.PreviousDay(DayOfWeek.Monday)
DateTime monday = DateTime.Now.PreviousMonday();
DateTime sunday = DateTime.Now.PreviousSunday();
Mặc dù đáng lưu ý rằng nếu bạn yêu cầu Thứ Hai trước đó vào Thứ Hai, nó sẽ trả lại cho bạn bảy ngày. Nhưng điều này cũng đúng nếu bạn sử dụng BeginningOfWeek
, có vẻ như là một lỗi :(.
Điều này sẽ trả lại cả ngày đầu tuần và ngày cuối tuần:
private string[] GetWeekRange(DateTime dateToCheck)
{
string[] result = new string[2];
TimeSpan duration = new TimeSpan(0, 0, 0, 0); //One day
DateTime dateRangeBegin = dateToCheck;
DateTime dateRangeEnd = DateTime.Today.Add(duration);
dateRangeBegin = dateToCheck.AddDays(-(int)dateToCheck.DayOfWeek);
dateRangeEnd = dateToCheck.AddDays(6 - (int)dateToCheck.DayOfWeek);
result[0] = dateRangeBegin.Date.ToString();
result[1] = dateRangeEnd.Date.ToString();
return result;
}
Tôi đã đăng mã hoàn chỉnh để tính đầu / cuối tuần, tháng, quý và năm trên blog của tôi ZamirsBlog
namespace DateTimeExample
{
using System;
public static class DateTimeExtension
{
public static DateTime GetMonday(this DateTime time)
{
if (time.DayOfWeek != DayOfWeek.Monday)
return GetMonday(time.AddDays(-1)); //Recursive call
return time;
}
}
internal class Program
{
private static void Main()
{
Console.WriteLine(DateTime.Now.GetMonday());
Console.ReadLine();
}
}
}
Dưới đây là sự kết hợp của một vài câu trả lời. Nó sử dụng một phương thức mở rộng cho phép văn hóa được truyền vào, nếu không được truyền vào, văn hóa hiện tại được sử dụng. Điều này sẽ cung cấp cho nó tính linh hoạt tối đa và tái sử dụng.
/// <summary>
/// Gets the date of the first day of the week for the date.
/// </summary>
/// <param name="date">The date to be used</param>
/// <param name="cultureInfo">If none is provided, the current culture is used</param>
/// <returns>The date of the beggining of the week based on the culture specifed</returns>
public static DateTime StartOfWeek(this DateTime date, CultureInfo cultureInfo=null) =>
date.AddDays(-1 * (7 + (date.DayOfWeek - (cultureInfo??CultureInfo.CurrentCulture).DateTimeFormat.FirstDayOfWeek)) % 7).Date;
Cách sử dụng ví dụ:
public static void TestFirstDayOfWeekExtension() {
DateTime date = DateTime.Now;
foreach(System.Globalization.CultureInfo culture in CultureInfo.GetCultures(CultureTypes.UserCustomCulture | CultureTypes.SpecificCultures)) {
Console.WriteLine($"{culture.EnglishName}: {date.ToShortDateString()} First Day of week: {date.StartOfWeek(culture).ToShortDateString()}");
}
}
nếu bạn muốn thứ bảy hoặc chủ nhật hoặc bất kỳ ngày nào trong tuần nhưng không vượt quá tuần hiện tại (Sat-Sun) tôi đã giúp bạn được bảo vệ với đoạn mã này.
public static DateTime GetDateInCurrentWeek(this DateTime date, DayOfWeek day)
{
var temp = date;
var limit = (int)date.DayOfWeek;
var returnDate = DateTime.MinValue;
if (date.DayOfWeek == day) return date;
for (int i = limit; i < 6; i++)
{
temp = temp.AddDays(1);
if (day == temp.DayOfWeek)
{
returnDate = temp;
break;
}
}
if (returnDate == DateTime.MinValue)
{
for (int i = limit; i > -1; i++)
{
date = date.AddDays(-1);
if (day == date.DayOfWeek)
{
returnDate = date;
break;
}
}
}
return returnDate;
}
Tiếp theo từ Biên dịch Câu trả lời này, hãy sử dụng phương pháp sau để lấy ngày cho bất kỳ ngày nào trong tuần:
public static DateTime GetDayOfWeek(this DateTime dt, DayOfWeek day)
{
int diff = (7 + (dt.DayOfWeek - DayOfWeek.Monday)) % 7;
var monday = dt.AddDays(-1 * diff).Date;
switch (day)
{
case DayOfWeek.Tuesday:
return monday.AddDays(1).Date;
case DayOfWeek.Wednesday:
return monday.AddDays(2).Date;
case DayOfWeek.Thursday:
return monday.AddDays(3).Date;
case DayOfWeek.Friday:
return monday.AddDays(4).Date;
case DayOfWeek.Saturday:
return monday.AddDays(5).Date;
case DayOfWeek.Sunday:
return monday.AddDays(6).Date;
}
return monday;
}
Cố gắng tạo một hàm sử dụng đệ quy. Đối tượng DateTime của bạn là một đầu vào và hàm trả về một đối tượng DateTime mới, là viết tắt của đầu tuần.
DateTime WeekBeginning(DateTime input)
{
do
{
if (input.DayOfWeek.ToString() == "Monday")
return input;
else
return WeekBeginning(input.AddDays(-1));
} while (input.DayOfWeek.ToString() == "Monday");
}
Tính toán theo cách này cho phép bạn chọn ngày nào trong tuần cho biết bắt đầu một tuần mới (trong ví dụ tôi chọn vào thứ Hai).
Lưu ý rằng thực hiện phép tính này cho một ngày là Thứ Hai sẽ cho Thứ Hai hiện tại chứ không phải thứ Hai trước đó.
//Replace with whatever input date you want
DateTime inputDate = DateTime.Now;
//For this example, weeks start on Monday
int startOfWeek = (int)DayOfWeek.Monday;
//Calculate the number of days it has been since the start of the week
int daysSinceStartOfWeek = ((int)inputDate.DayOfWeek + 7 - startOfWeek) % 7;
DateTime previousStartOfWeek = inputDate.AddDays(-daysSinceStartOfWeek);
int diff = dayOfWeek - dt.DayOfWeek; return dt.AddDays(diff).Date;