Extract substring in right format

조회 수: 3 (최근 30일)
DavidL88
DavidL88 2021년 11월 9일
댓글: DavidL88 2021년 11월 9일
How can I get the substring 22_right from the string below? The code below give me _22_right. I need it without the first '_'
str = 'Subject160/VSTMB_160_band_resample/data_22_right_average_210225_1827.mat'
EventName = regexp(str,'[1-9_]+_right','match')

채택된 답변

DGM
DGM 2021년 11월 9일
Why include the extra _?
str = 'Subject160/VSTMB_160_band_resample/data_22_right_average_210225_1827.mat'
str = 'Subject160/VSTMB_160_band_resample/data_22_right_average_210225_1827.mat'
EventName = regexp(str,'[1-9]+_right','match')
EventName = 1×1 cell array
{'22_right'}

추가 답변 (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