Changing portions of variable names

1 次查看(过去 30 天)
This may be a very simple question but I have been struggling with it for a bit and would appreciate the help.
rawdatafile = dir('*.csv');
rawdata = rawdatafile.name;
RawDataMatrix = csvread(rawdata, 13,0);
dlmwrite( strcat(rawdata,'.dat'), RawDataMatrix)
I have some code that finds a .csv file and imports it then deletes the first 13 rows and I am wanting to save the matrix as the same filename except instead of .csv I want to save it as .dat. The current code I have above saves it as filename.csv.dat so I am wondering how to get rid of the '.csv' portion before I save it. Thanks for the help!

采纳的回答

Stephen23
Stephen23 2019-7-1
编辑:Stephen23 2019-7-1
Use this as the new filename:
strrep(rawdata,'.csv','.dat')
Or more robustly:
[~,fnm] = fileparts(rawdata);
sprintf('%s.dat',fnm)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Import and Export 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by