gpt4 book ai didi

c# - 本地化日期范围

转载 作者:可可西里 更新时间:2023-11-01 08:29:17 25 4
gpt4 key购买 nike

有谁知道如何使用 C# 本地化日期范围?

特别是,我想生成“智能”日期范围,以便消除冗余信息。

这里有一些美国英语的例子

  1. 2009 年 8 月 - 9 月
  2. 2009 年 8 月
  3. 2009 年 8 月 1 日至 9 日
  4. 2009 年 1 月 1 日 - 3 月 3 日
  5. 2009年12月6日-2010年1月8日

据我所知,.NET Framework 支持本地化日期,但不支持日期范围。

对于 CultureInfo 支持的 Windows 语言环境,使用 System.Globalization.DateTimeFormatInfo 中的信息,我能够弄清楚(大部分时间)如何处理项目#1 和#2。项目 #2 只是 DateTime.ToString(DateTimeFormatInfo.YearMonthFormat)。使用 YearMonthFormat 我还能够推断出用于大多数语言的 #1 的格式。对于少数我不能重复的年份。

不幸的是,我不知道如何使用 .NET Framework 来完成项目 #3-#5。 Outlook 格式范围使用这些格式,所以我希望可能有一些 Win32 API 可以做到这一点,但谷歌搜索“Win32 日期范围本地化”没有找到任何有用的信息。

我喜欢“智能范围格式化”提供的增强的可用性,我希望我的未使用英文版 Windows 的客户也能获得同样的好处。

有人知道如何以一种依赖于文化的方式做到这一点吗?

最佳答案

问得好,似乎 .NET 框架和其他语言似乎也缺少一些东西。我想结果的呈现方式取决于您的应用。

Outlook 作为输入具有很好的日期理解能力(谷歌日历也是如此),但我个人还没有看到这种形式的表达作为输出(例如显示给用户)。

一些建议:

  1. 坚持显示开始日期和结束日期,不要担心冗余
  2. 自己动手...... :-(

我猜从您的术语“本地化”来看,您计划将输出国际化,如果是这种情况,您将很难捕捉到所有情况,它似乎不是存储在大多数情况下的信息典型的国际化数据集。

从您的示例中专注于英语,您似乎已经在代码中定义了许多规则:

  1. 始终显示年份。
  2. 月份(至少其中之一)也始终显示。
  3. 情况 3 中不显示天数,这意味着开始日期是 1 号,结束日期是 31 号(例如,每月的每一天)
  4. 如果开始/结束月份不同,则会显示日期和月份。
  5. 如果这两个日期因年份而异,则年份会另外显示在开始日期之前。

我知道上面说的只是看英文的,但是在我看来,自己动手也不是很难,不过在这个编辑器里写的太多了!

编辑——我知道这不能回答原来的问题——但如果有人使用搜索引擎找到这个问题并想要一个英文版本...

class Program
{
static void Main(string[] args)
{
Console.WriteLine(DateRange.Generate(2009, 08, 01, 2009, 09, 31));
Console.WriteLine(DateRange.Generate(2009, 08, 01, 2009, 08, 31));
Console.WriteLine(DateRange.Generate(2009, 08, 01, 2009, 08, 09));
Console.WriteLine(DateRange.Generate(2009, 01, 01, 2009, 03, 03));
Console.WriteLine(DateRange.Generate(2009, 12, 06, 2010, 01, 08));

// Same dates
Console.WriteLine(DateRange.Generate(2009, 08, 01, 2009, 08, 01));
}
}

static class DateRange
{
private static string[] Months = {
"January", "February", "March", "April",
"May", "June", "July", "August",
"September", "October", "November", "December"
};
public static string Generate(
int startYear, int startMonth, int startDay,
int endYear, int endMonth, int endDay)
{
bool yearsSame = startYear == endYear;
bool monthsSame = startMonth == endMonth;
bool wholeMonths = (startDay == 1 && IsLastDay(endDay, endMonth));

if ( monthsSame && yearsSame && startDay == endDay)
{
return string.Format("{0} {1}, {2}", startDay, Month(startMonth), startYear);
}

if (monthsSame)
{
if (yearsSame)
{
return wholeMonths
? string.Format("{0} {1}", Month(startMonth), endYear)
: string.Format("{0} {1} - {2}, {3}", Month(endMonth), startDay, endDay, endYear);
}
return wholeMonths
? string.Format("{0}, {1} - {2}, {3}",
Month(startMonth), startYear,
Month(endMonth), endYear)
: string.Format("{0} {1}, {2} - {3} {4}, {5}",
Month(startMonth), startDay, startYear,
Month(endMonth), endDay, endYear);
}

if (yearsSame)
{
return wholeMonths
? string.Format("{0} - {1}, {2}", Month(startMonth), Month(endMonth), endYear)
: string.Format("{0} {1} - {2} {3}, {4}",
Month(startMonth), startDay,
Month(endMonth), endDay,
endYear);
}
return wholeMonths
? string.Format("{0}, {1} - {2}, {3}",
Month(startMonth), startYear,
Month(endMonth), endYear)
: string.Format("{0} {1}, {2} - {3} {4}, {5}",
Month(startMonth), startDay, startYear,
Month(endMonth), endDay, endYear);
}

private static string Month(int month)
{
return Months[month - 1];
}

public static bool IsLastDay(int day, int month)
{
switch (month+1)
{
case 2:
// Not leap-year aware
return (day == 28 || day == 29);
case 1: case 3: case 5: case 7: case 8: case 10: case 12:
return (day == 31);
case 4: case 6: case 9: case 11:
return (day == 30);
default:
return false;
}
}
}

这会产生与原始问题相同的输出(几乎,九月变成了九月):

August - September, 2009
August 1 - 31, 2009
August 1 - 9, 2009
January 1 - March 3, 2009
December 6, 2009 - January 8, 2010

关于c# - 本地化日期范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1163067/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com