如何将此字符串“2016-04-14T10:44:00+0000”转换为NSDate并只保留年、月、日、小时?

中间的T真的让我在处理日期时不习惯。


当前回答

就用SwifterSwift吧。

stringDate = "2020-04-26T08:56:17.987Z"
let date = Date(iso8601String: stringDate)

其他回答

创建全局函数

func convertDateFormat(inputDate: String) -> String {

     let olDateFormatter = DateFormatter()
     olDateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss"

     let oldDate = olDateFormatter.date(from: inputDate)

     let convertDateFormatter = DateFormatter()
     convertDateFormatter.dateFormat = "MMM dd yyyy h:mm a"

     return convertDateFormatter.string(from: oldDate!)
}

调用函数并在其中传递值

get_OutputStr = convertDateFormat(inputDate: "2019-03-30T05:30:00+0000")

这里是输出

Feb 25 2020 4:51 PM



 

就用SwifterSwift吧。

stringDate = "2020-04-26T08:56:17.987Z"
let date = Date(iso8601String: stringDate)

从iOS 15.0开始,我们可以更快速地将字符串转换为日期:

let strategy = Date.ParseStrategy(format: "\(year: .defaultDigits)-\(month: .twoDigits)-\(day: .twoDigits)T\(hour: .twoDigits(clock: .twentyFourHour, hourCycle: .zeroBased)):\(minute: .twoDigits):\(second: .twoDigits)\(timeZone: .iso8601(.short))", timeZone: .current)
let date = try? Date("2016-04-14T10:44:00+0000", strategy: strategy)

试试下面的日期格式。

let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "yyyy'-'MM'-'dd'T'HH':'mm':'ssZZZ"
let date = dateFormatter. dateFromString (strDate)

希望能有所帮助。

Swift 4.1:

let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy'-'MM'-'dd'T'HH':'mm':'ssZZZ"
let date = dateFormatter.date(from: strDate)

那SwiftDate呢?Swift最好的日期和时间解析和操作库。

https://github.com/malcommac/SwiftDate#1-date-parsing

使用可可豆荚安装: https://github.com/malcommac/SwiftDate/blob/master/Documentation/0.Informations.md#installation

然后:

import SwiftDate

// All default datetime formats (15+) are recognized automatically
let _ = "2010-05-20 15:30:00".toDate()
// You can also provide your own format!
let _ = "2010-05-20 15:30".toDate("yyyy-MM-dd HH:mm")
// All ISO8601 variants are supported too with timezone parsing!
let _ = "2017-09-17T11:59:29+02:00".toISODate()
// RSS, Extended, HTTP, SQL, .NET and all the major variants are supported!
let _ = "19 Nov 2015 22:20:40 +0100".toRSS(alt: true)