Extract data (timestamps) from csv file

1 次查看(过去 30 天)
I have a CSV file containing ~14000 rows with hundreds of timestamps.
I am trying to extract all the timestamps from the attahced csv file. Any help with coding please will be appreiacted.
Thanks

采纳的回答

Turlough Hughes
Turlough Hughes 2020-3-3
编辑:Turlough Hughes 2020-3-4
You could read the file in as a character vector with fileread and then use regexp as follows:
filetext = fileread('Info.csv');
t = str2double(regexp(filetext,'(?<=Time=)\d*','Match')).';
  1 个评论
Sean Mark L
Sean Mark L 2020-3-4
Thank you, it worked perfectly. I could not get my head around how to do it but I understand now.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by