How to use regexp to split the filepath

file path= C:\Data\Project\PCOD\PCOD_Model.mdl
I want the model path only like C:\Data\Project\PCOD\.... how can I do it

 Accepted Answer

Use the fileparts() function, not regexp():
[folder, baseFileName, extension] = fileparts(yourFilePath);

More Answers (0)

Categories

Tags

Community Treasure Hunt

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

Start Hunting!