handling filename containing spaces
Afficher commentaires plus anciens
I am using the following code to load a data file [Windows environment]:
FileName = uigetfile('*.TAB','Select a TAB file.');
Frames = dlmread(FileName_in,'\t');
Most of the files have names such as foo_two.tab or foo-two.tab Some contain spaces, such as foo two.tab
I have tried both strcat and regexp to insert single quotes at the beginning and end of the filename string but these are ignored by the dlmread function.
Any tips or suggestions would be appreciated.
1 commentaire
Sean de Wolski
le 16 Mar 2012
So I take it that doesn't work as written?
Réponse acceptée
Plus de réponses (1)
Sean de Wolski
le 16 Mar 2012
1 vote
Ahh!
Difference between FileName and FileName_in. The issue has nothing to do with spaces.
1 commentaire
Philip
le 16 Mar 2012
Catégories
En savoir plus sur Workspace Variables and MAT Files dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!