Make one word in path name a variable
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Can I make one variable in a path name a variable?
'C:\Users\Jane....'
'C:\Users\George....'
0 Kommentare
Antworten (2)
the cyclist
am 26 Aug. 2019
Yes, but you will need to be a little more specific about the rule for finding what part of the string you want. One step that might help you is to use the regexp command to find the locations of the slashes:
pathNameVar = 'C:\Users\Jane....';
slashIndices = regexp(pathNameVar,'\');
So, for example, if you wanted everything after the last slash to be your variable, then
varName = pathNameVar(slashIndices(end)+1:end);
0 Kommentare
Image Analyst
am 26 Aug. 2019
With "names" as your existing variable, try fullfile() to create a new variable with name "thisFolderName":
names = {'Jane', 'George', 'Nancy', 'Image Analyst'};
'C:\Users\Jane....';
for k = 1 : length(names)
thisFolderName = fullfile('C:\users\', names{k})
% Now do something with thisFolderName
end
You'll see
thisFolderName =
'C:\users\Jane'
thisFolderName =
'C:\users\George'
thisFolderName =
'C:\users\Nancy'
thisFolderName =
'C:\users\Image Analyst'
2 Kommentare
Image Analyst
am 26 Aug. 2019
How is the program supposed to know where the names Nancy and Zenobia come from? Are they already folders on the disk, like you can just use dir('c:/users/') to find out about?
Siehe auch
Kategorien
Mehr zu Performance and Memory finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!