Changing file name in Matlab

2 views (last 30 days)
Tanmoyee Bhattacharya
Tanmoyee Bhattacharya on 19 Jun 2015
I nave a file named wflux_23.25_86.75.I have to change the name of the file as data_23.25_86.75.How can we do this in Matlab.

Answers (1)

Mischa Kim
Mischa Kim on 19 Jun 2015
Tanmoyee, use the strrep command
str = 'wflux_23.25_86.75';
str_new = strrep(str, 'wflux', 'data')
str_new =
data_23.25_86.75
  2 Comments
Tanmoyee Bhattacharya
Tanmoyee Bhattacharya on 19 Jun 2015
Thanks for reply.It works
Tanmoyee Bhattacharya
Tanmoyee Bhattacharya on 19 Jun 2015
If I have 100 files in a folder by name wflux_23.25_86.75 and I have to change the name of the files in that folder by data_23.25_86.75 what I have to do?

Sign in to comment.

Categories

Find more on File Operations in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!