フィルターのクリア

how can delete a part of image name?

2 ビュー (過去 30 日間)
aya ben mabrouk
aya ben mabrouk 2016 年 5 月 20 日
コメント済み: aya ben mabrouk 2016 年 5 月 21 日
Hello everyone, I have a folder data that contains a list of images named as follow :
AHTD3A0001_Para1.tif
AHTD3A0002_Para1.tif
AHTD3A0003_Para1.tif
.
.
AHTD3A1012_Para1
I want to delete the first part of image name ( AHTD3A) in order to replace image names such as :
0001_Para1.tif
0002_Para1.tif
0003_Para1.tif
.
.
AHTD3A1012_Para1
please any suggestion for matlab code and thanks in advance

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 5 月 20 日
str={'AHTD3A0001_Para1.tif'
'AHTD3A0002_Para1.tif'
'AHTD3A0003_Para1.tif'}
out=strrep(str,'AHTD3A','')
  5 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2016 年 5 月 21 日
F is the folder where your images are stored, for example
F='C:\document'
aya ben mabrouk
aya ben mabrouk 2016 年 5 月 21 日
thanks

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by