필터 지우기
필터 지우기

How to use regexp to split the filepath

조회 수: 4 (최근 30일)
Sunu
Sunu 2013년 5월 3일
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

채택된 답변

Image Analyst
Image Analyst 2013년 5월 3일
Use the fileparts() function, not regexp():
[folder, baseFileName, extension] = fileparts(yourFilePath);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by