Datetime shows month name and not number

10 visualizaciones (últimos 30 días)
Tiago Dias
Tiago Dias el 16 de Ag. de 2019
Comentada: madhan ravi el 16 de Ag. de 2019
Hello,
I want to find a specific datetime in my vector full of date time in the format of (10-09-2018 00:00:00) days-month-year hour-minute-second
I want to find this time:
datetime('10-09-2018 00:00:00','InputFormat','dd-MM-uuuu HH:mm:ss')
But matlab assume the 09 to be september and I need to be 09, because my vector has numbers for the months and not the short name
ans =
datetime
10-Sep-2018 00:00:00
Thanks for your time

Respuesta aceptada

madhan ravi
madhan ravi el 16 de Ag. de 2019
Change InputFormat to Format.
  2 comentarios
Guillaume
Guillaume el 16 de Ag. de 2019
Not really!
'InputFormat' specify the format of the input string, so is required for matlab to decode that string properly. It is independent of the 'Format' property which controls how the datetime is displayed.
If you want the display format to match the input format, you either have the specify it twice:
datetime('10-09-2018 00:00:00', 'InputFormat', 'dd-MM-uuuu HH:mm:ss', 'Format', 'dd-MM-uuuu HH:mm:ss')
A bit of a chore (particularly if you decide to change the format)!, so there's an easier way:
datetime('10-09-2018 00:00:00','InputFormat','dd-MM-uuuu HH:mm:ss', 'Format', 'preserveinput')
madhan ravi
madhan ravi el 16 de Ag. de 2019
Thank you, Guillaume!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Downloads en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by