Extract data (timestamps) from csv file

1 visualizzazione (ultimi 30 giorni)
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

Risposta accettata

Turlough Hughes
Turlough Hughes il 3 Mar 2020
Modificato: Turlough Hughes il 4 Mar 2020
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 Commento
Sean Mark L
Sean Mark L il 4 Mar 2020
Thank you, it worked perfectly. I could not get my head around how to do it but I understand now.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su File Operations in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by