आपको 2 अलग-अलग घोषित करने होंगे NSDateFormatters
, पहला, स्ट्रिंग को एक में बदलना NSDate
और दूसरा आपके प्रारूप में तारीख को प्रिंट करना।
इस कोड को आज़माएं:
let dateFormatterGet = NSDateFormatter()
dateFormatterGet.dateFormat = "yyyy-MM-dd HH:mm:ss"
let dateFormatterPrint = NSDateFormatter()
dateFormatterPrint.dateFormat = "MMM dd,yyyy"
let date: NSDate? = dateFormatterGet.dateFromString("2016-02-29 12:24:26")
print(dateFormatterPrint.stringFromDate(date!))
स्विफ्ट 3 और उच्चतर:
स्विफ्ट से 3 NSDate
वर्ग के लिए बदल दिया गया है Date
और NSDateFormatter
करने के लिए DateFormatter
।
let dateFormatterGet = DateFormatter()
dateFormatterGet.dateFormat = "yyyy-MM-dd HH:mm:ss"
let dateFormatterPrint = DateFormatter()
dateFormatterPrint.dateFormat = "MMM dd,yyyy"
if let date = dateFormatterGet.date(from: "2016-02-29 12:24:26") {
print(dateFormatterPrint.string(from: date))
} else {
print("There was an error decoding the string")
}