file name extraction from load file

14 views (last 30 days)
I have load data file to extract data and plots.
A typical file name would be '01_02_20_Cu_1.csv' and I use this as
A1= readcell('01_02_20_Cu_1.csv');
How can I get file name "01_02_20_Cu_1" from load data file as text format?

Accepted Answer

Kawin Kumaran
Kawin Kumaran on 3 Jul 2020
fileparts() function can be used to extract file name .
file = '01_02_20_Cu_1.csv';
[~,name,~] = fileparts(file)
The result will be :
name : '01_02_20_Cu_1'
Please refer the following documentation for more information .

More Answers (0)

Categories

Find more on Data Import and Export in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!