char array, cell array or string array

How to padd numbers with leading zero or to convert to two digits in cell array, string array or char arrays?
5×16 char array
'2020-01-1-11-15'
'2020-02-5-12-5 '
'2020-04-25-10-30'
'2020-07-15-3-15 '
'2020-12-3-17-6 '

1 comentario

Mohamad Ghaddar
Mohamad Ghaddar el 27 de Dic. de 2020
for examle convert '2020-1-11-5' to 2020-01-11-05'

Iniciar sesión para comentar.

 Respuesta aceptada

C = ['2020-01-1-11-15 '
'2020-02-5-12-5 '
'2020-04-25-10-30'
'2020-07-15-3-15 '
'2020-12-3-17-6 ']
C = 5x16 char array
'2020-01-1-11-15 ' '2020-02-5-12-5 ' '2020-04-25-10-30' '2020-07-15-3-15 ' '2020-12-3-17-6 '
char(datetime(cellstr(C), 'InputFormat', 'uuuu-M-d-H-m', 'Format', 'uuuu-MM-dd-HH-mm'))
ans = 5x16 char array
'2020-01-01-11-15' '2020-02-05-12-05' '2020-04-25-10-30' '2020-07-15-03-15' '2020-12-03-17-06'

Más respuestas (0)

Categorías

Más información sobre Geodesy and Mapping en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 27 de Dic. de 2020

Comentada:

el 28 de Dic. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by