Parse variable in a table
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Inna Pelloso
el 8 de Ag. de 2023
Comentada: Star Strider
el 8 de Ag. de 2023
Hi,
I have a variable in a table, timestamp, in the following format:
2023-02-24 13:00:00
How can I parse this variable into two new variables, date (2023-02-24) and time (13:00:00)?
Any help would be appreciated!
IP
0 comentarios
Respuesta aceptada
Star Strider
el 8 de Ag. de 2023
Editada: Star Strider
el 8 de Ag. de 2023
Several options, depending on what you want —
timestamp = '2023-02-24 13:00:00'
DT = datetime(timestamp)
Date = DT;
Time = DT;
Date.Format = 'yyyy-MM-dd'
Time.Format = 'HH:mm:ss'
Date = extractBefore(timestamp, ' ')
Time = extractAfter(timestamp, ' ')
DateTime = strsplit(timestamp, ' ')
.
2 comentarios
Más respuestas (0)
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!