Borrar filtros
Borrar filtros

How to remove a part of a character?

1 visualización (últimos 30 días)
Behrooz Daneshian
Behrooz Daneshian el 3 de En. de 2023
Editada: Voss el 3 de En. de 2023
Hi all,
Suppose that I have a character called Date='1938-03-01'. I want to remove the year part(1983). 1983 is just an example. I want to remove any year form the date. How can I do that?

Respuesta aceptada

Voss
Voss el 3 de En. de 2023
Editada: Voss el 3 de En. de 2023
Date = '1938-03-01';
Date(1:4) = []
Date = '-03-01'

Más respuestas (0)

Categorías

Más información sobre Dates and Time en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by