这个字符串的日期格式是什么?

What is the date formater for this string?

我正在使用 Swift 语言工作。我不知道 2020-07-23T00:17:06.000Z.

的日期格式

我想按照该格式将 Date 转换为 String,反之亦然。

我该怎么办?提前致谢...

iso8601

let string = "2020-07-23T00:17:06.000Z"
let dateFormatter = ISO8601DateFormatter()
dateFormatter.formatOptions = [.withInternetDateTime, .withFractionalSeconds]
let date = dateFormatter.date(from: string)