Borrar filtros
Borrar filtros

Removing part of file name (random numbers )

12 visualizaciones (últimos 30 días)
AAS
AAS el 9 de Mzo. de 2022
Respondida: Jan el 9 de Mzo. de 2022
Hi,
I need to remove part of fodler names that contains random numbers so I cannot really use strrep.
the files look like this "A_m_T17__75788", "A_m_T18__63071", "A_m_T19__51148" and I want to replace it with "A_m_T17","A_m_T18" ,"A_m_T19" so on and so forth.
Appreciate any help or guidance!!

Respuesta aceptada

Jan
Jan el 9 de Mzo. de 2022
Names = ["A_m_T17__75788", "A_m_T18__63071", "A_m_T19__51148"];
Cleaned = extractBefore(Names, '__')
Cleaned = 1×3 string array
"A_m_T17" "A_m_T18" "A_m_T19"

Más respuestas (0)

Categorías

Más información sobre Deploy to C++ Applications Using mwArray API (C++03) en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by