Using fopen, textscan for TXT file but each line cut off at space. How to resolve the issue?
Afficher commentaires plus anciens
I have a large txt file containing the filepaths for specified files.
Ex:
H:\Vicon_data\modified2AFC\Clarkson 2AFC\M29AA216\M29AA216afc01c1asfh_0000.3LA
My code:
%read the text file
fileID=fopen('Master_inventory.txt');
inventory = textscan(fileID,'%s %*[^\n]');
d = inventory{1};
c = cellstr(d)
Result in command window:
'H:\Vicon_data\modified2AFC\Clarkson'
NOTE: The example path is one of +28000, which are distributed into different folders, so I can't go back and delete the spaces from the folder names.
1 commentaire
Sara
le 15 Juil 2014
Is the use of fgetl out of question?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur String Parsing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!