how I do header extraction from file?

2 次查看(过去 30 天)
Hi all, I extracted the numeric data from .tuv file but I still need to extract the date and time which is in the form of
%TimeStamp: 2017 07 02 05 00 00
the above line is just for one file, so I want to extract it from all files. how can I do that?
Thank you so much

采纳的回答

Walter Roberson
Walter Roberson 2017-9-10
S = '%TimeStamp: 2017 07 02 05 00 00';
datetime(sscanf(S, '%%TimeStamp: %d%d%d%d%d%d').')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Adding custom doc 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by