create yyyymm variable from date
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
alpedhuez
el 29 de Jun. de 2020
Comentada: Star Strider
el 30 de Jun. de 2020
I have a date variable. I want to create yyyymm from the date variable. I can use the year function and the month function to extract year and month. I would like to know how one can create yyyymm variable.
3 comentarios
Respuesta aceptada
Star Strider
el 30 de Jun. de 2020
Try this:
dt = '1/1/2020';
Out = datetime(dt, 'InputFormat','MM/dd/yyyy', 'Format','yyyyMM')
producing:
Out =
datetime
202001
.
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Dates and Time en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!