Conversion of string containing "AM" or "PM" to datetime

41 Ansichten (letzte 30 Tage)
Sebastian
Sebastian am 21 Apr. 2022
Bearbeitet: Stephen23 am 21 Apr. 2022
Given the string
str = "4/21/2022 8:48:40 AM"
I want to convert it to a datetime
datetime
21-Apr-2022 08:48:40
However, using
d = datetime(str, "InputFormat", "MM/dd/yyyy HH:mm:SS")
gives an error, while
d = datetime(str, "InputFormat", "MM/dd/yyyy HH:mm:SS a")
gives
datetime
21-Apr-2022 00:48:00
what is not what I want or even expect (hours and seconds both set to zero).

Akzeptierte Antwort

Stephen23
Stephen23 am 21 Apr. 2022
Bearbeitet: Stephen23 am 21 Apr. 2022
str = "4/21/2022 8:48:40 AM";
dtm = datetime(str, "InputFormat", "M/d/u h:m:s a")
dtm = datetime
21-Apr-2022 08:48:40

Weitere Antworten (0)

Kategorien

Mehr zu Dates and Time finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by