¿Cómo convierto una cadena de fecha/hora en una cadena de fecha diferente?

Resuelto Sydney Loteria asked hace 54 años • 25 respuestas

¿Cómo convertiré esta fecha y hora a partir de la fecha?

De esto: 2016-02-29 12:24:26
a: 29 de febrero de 2016

Hasta ahora, este es mi código y devuelve un valor nulo:

let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "MM-dd-yyyy"
dateFormatter.timeZone = NSTimeZone(name: "UTC")
let date: NSDate? = dateFormatter.dateFromString("2016-02-29 12:24:26")
print(date)
Sydney Loteria avatar Jan 01 '70 08:01 Sydney Loteria
Aceptado

Esto puede resultar útil para quienes quieran utilizar dateformatter.dateformat;

si quieres 12.09.18usasdateformatter.dateformat = "dd.MM.yy"

Wednesday, Sep 12, 2018           --> EEEE, MMM d, yyyy
09/12/2018                        --> MM/dd/yyyy
09-12-2018 14:11                  --> MM-dd-yyyy HH:mm
Sep 12, 2:11 PM                   --> MMM d, h:mm a
September 2018                    --> MMMM yyyy
Sep 12, 2018                      --> MMM d, yyyy
Wed, 12 Sep 2018 14:11:54 +0000   --> E, d MMM yyyy HH:mm:ss Z
2018-09-12T14:11:54+0000          --> yyyy-MM-dd'T'HH:mm:ssZ
12.09.18                          --> dd.MM.yy
10:41:02.112                      --> HH:mm:ss.SSS

Aquí hay alternativas:

  • Época: G (AD), GGGG (Anno Domini)
  • Año: y (2018), yy (18), yyyy (2018)
  • Mes: M, MM, MMM, MMMM, MMMMM
  • Día del mes: d, dd
  • Nombre del día de la semana: E, EEEE, EEEEE, EEEEEE
BatyrCan avatar Sep 12 '2018 14:09 BatyrCan

Tienes que declarar 2 diferentes NSDateFormatters, el primero para convertir la cadena a a NSDatey el segundo para imprimir la fecha en tu formato.
Pruebe este código:

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!))

Swift 3 y superior:

De Swift 3 NSDatela clase se ha cambiado a Datey NSDateFormattera 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")
}
LorenzOliveto avatar Feb 29 '2016 13:02 LorenzOliveto