Effacer les filtres
Effacer les filtres

DateTime YYYYMMDD HHMMSS ConvertTo

6 vues (au cours des 30 derniers jours)
em_++
em_++ le 29 Avr 2021
Réponse apportée : Ayush le 9 Juil 2024
Hi everyone,
i have a question:
i have a .txt file with two collums, which are the date and the time in this format: YYYYMMDD HHMMSS
now i want to convert it to this format DD-MM-YYYY HH:MM:SS
I already managed to convert the date but not the time:
date = datetime(File.txt,'ConvertFrom','yyyymmmdd')
output:
03-Feb-2021 00:00:00
thanks for your help!!

Réponses (1)

Ayush
Ayush le 9 Juil 2024
Hi,
To convert the data into the required format, you can make use of the "Format" property of the "datetime" object and set it to the desired output format. Refer to the example code below for a better understanding:
% Example date and time in the format YYYYMMDD HHMMSS
originalDateTime = '20231005 123456';
% Convert the string to a datetime object with the specified input format
dt = datetime(originalDateTime, 'InputFormat', 'yyyyMMdd HHmmss');
% Set the desired output format
dt.Format = 'dd-MM-yyyy HH:mm:ss';
% Convert the datetime object to a string
formattedDateTime = char(dt);
% Display the result
disp(formattedDateTime);
05-10-2023 12:34:56
For more information on the "datetime" function, refer to the below documentation:

Catégories

En savoir plus sur Dates and Time dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by