作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要获取完整月份名称的简称。
例如,
DateTime.Now.ToString("MMMM", CultureInfo.CurrentCulture);
this returns - "agosto"
DateTime.Now.ToString("MMM", CultureInfo.CurrentCulture);
this returns - "ago."
这两个代码仅适用于获取当前月份。我需要获得所有月份的简称。
如果我输入 "agosto"
,它应该返回 "ago."
。我怎样才能做到这一点?
最佳答案
public static string GetAbbreviatedFromFullName(string fullname)
{
DateTime month;
return DateTime.TryParseExact(
fullname,
"MMMM",
CultureInfo.CurrentCulture,
DateTimeStyles.None,
out month)
? month.ToString("MMM")
: null;
}
关于c# - 如何从全月名中获取短月名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25420045/
我是一名优秀的程序员,十分优秀!