file name extraction from load file
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Akhtar Rind
le 3 Juil 2020
Commenté : Akhtar Rind
le 4 Juil 2020
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?
0 commentaires
Réponse acceptée
Kawin Kumaran
le 3 Juil 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 .
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Import and Analysis dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!