MATLAB: How can delete a part of image name

deleteimage namereplace

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

Best Answer

str={'AHTD3A0001_Para1.tif'
'AHTD3A0002_Para1.tif'
'AHTD3A0003_Para1.tif'}
out=strrep(str,'AHTD3A','')