如何从整数值获取月份名称?
如何从整数值获取月份名称?
例如 7 是七月
How do you get a month name from an integer value?
e.g. 7 is July
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从整数值获取月份名称?
例如 7 是七月
How do you get a month name from an integer value?
e.g. 7 is July
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
使用自定义格式字符串:
Using a custom format string:
使用 DateTime 对象的 ToString() 方法。 “MMMM”是长月。 “MMM”是一个简短的月份代码,例如 Aug 代表八月。好处是这样,如果需要,您也可以处理 i18n 问题。
Use the DateTime object's ToString() method. "MMMM" is the long month. "MMM" is a short month code like Aug for August. The nice thing is this way, you can deal with i18n issues too if you need to.
老兄!!
只要有一个包含 12 个月名称的字符串数组,names[7] 就是它。
Dude!!
just have an string array containing names of 12 months, and names[7] is it.