iPad - 通过删除世纪来更新字符串中的日期格式
我目前有一个包含 03/23/2011 的 NSString。
我想检查该字符串是否与 XX/XX/XXXX 格式匹配,如果是,则从年份中删除世纪,以 XX/XX/XX 结尾,因此在示例中为 03/23/11 。
我应该通过尝试从字符串中获取 NSDate 并设置我想要取回它的格式来做到这一点,还是有更简单的方法?
I currently have an NSString that contains 03/23/2011.
I would like to check to see if the string matches the XX/XX/XXXX format, and if so, remove the century from the year, ending up with XX/XX/XX, so in the example case, 03/23/11.
Should I do this by trying to get an NSDate from the string and setting the format that I want to get it back, or is there a simpler way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会看一下 NSDateFormatter,我认为它包含您需要的方法。
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/Reference/Reference.html#//apple_ref/occ/cl/NSDateFormatter
I would take a look at the NSDateFormatter, I think it holds the methods that you require.
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/Reference/Reference.html#//apple_ref/occ/cl/NSDateFormatter