gpt4 book ai didi

iphone - iOS - 解析不同格式的日期

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:50:59 26 4
gpt4 key购买 nike

我是 iOS 新手。我希望将诸如“2012-01-02T00:00:00-05:00”之类的日期解析为“YYYY-MM-dd HH:mm:ss”格式。到目前为止,我已经完成了以下操作 -

NSDateFormatter *inputFormatter = [[NSDateFormatter alloc] init];
[inputFormatter setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"UTC"]];
[inputFormatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"];
NSString *xExpDate = expirationDate;
NSString *tempExpDate = [xExpDate stringByReplacingOccurrencesOfString:@"T" withString:@" "];

在这之后我不太明白该怎么办。有什么想法吗?

最佳答案

  NSString *d = @"2012-01-02T00:00:00-0500";

NSDateFormatter *inputFormatter = [[NSDateFormatter alloc] init];
[inputFormatter setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"UTC"]];
[inputFormatter setDateFormat:@"YYYY-MM-dd'T'HH:mm:ssZZZ"];
NSDate *xExpDate = [inputFormatter dateFromString:d];
NSLog(@"xExpDate: %@", xExpDate);

我认为您的日期字符串不正确,因为该区域应该没有任何“:”

关于iphone - iOS - 解析不同格式的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8715734/

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