Removing part of file name (random numbers )
8 ビュー (過去 30 日間)
古いコメントを表示
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!!
0 件のコメント
採用された回答
Jan
2022 年 3 月 9 日
Names = ["A_m_T17__75788", "A_m_T18__63071", "A_m_T19__51148"];
Cleaned = extractBefore(Names, '__')
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で File Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!