Date conversion in a number format
Show older comments
Hey guys
I have an excel file with the date format like this: '03/06/2014 11:39:04.324 PM' I want to convert this date format into (yyyymmddhhmmssSSS)20140306233904324. If the time is PM, then the hour should be in the format of 24 hours. Thanks in advance.
Accepted Answer
More Answers (1)
Walter Roberson
on 27 Mar 2014
datestr(datevec('03/06/2014 11:39:04.324 PM', 'MM/DD/YYYY hh:mm:ss.fff PM'), 'YYYYMMDDhhmmssfff')
2 Comments
Chandrasekhar
on 27 Mar 2014
so simple..
Walter Roberson
on 27 Mar 2014
You could also use datenum instead of datevec but I think datevec should be more resistant to round-off.
Categories
Find more on Time Series Objects in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!