我有这个从 XML 获得的日期,
2009-11-05T02:15:03.000Z
我将如何将其更改为
2009 年 5 月 11 日
我找到了删除 .000Z 的方法,所以我只剩下这个了
2009-11-05T02:15:03
任何帮助是极大的赞赏
我有这个从 XML 获得的日期,
2009-11-05T02:15:03.000Z
我将如何将其更改为
2009 年 5 月 11 日
我找到了删除 .000Z 的方法,所以我只剩下这个了
2009-11-05T02:15:03
任何帮助是极大的赞赏
The "proper" way would be to parse the original string to a date using an NSDateFormatter
configured with the format used to generate the date in XML, then use a second NSDateFormatter
with the format style you want to use to format the parsed date.