how to convert yymmdd to dd/mm/yyyy
Mostra commenti meno recenti
Hi
Does anyone know how to convert yymmdd to dd/mm/yyyy? I have dates is given in the yymmdd format, such as 750525,780215,.....which mean year 1975, month-5, day-25 or year 1978, month-2,day-15. I wanted to convert the date in the form dd/mm/yyyy which is as 25/05/1975, 15/02/1978.
How I can do it?
Thanks a lot!
Risposta accettata
Più risposte (1)
Steven Lord
il 6 Giu 2016
Use the 'ConvertFrom' option with datetime to create a datetime object representing your date.
x = 19990511;
D = datetime(x, 'ConvertFrom', 'yyyymmdd')
1 Commento
davit petraasya
il 6 Giu 2016
Categorie
Scopri di più su Time Series Objects in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!