Change name in files

조회 수: 2 (최근 30일)
DavidL88
DavidL88 2021년 6월 3일
댓글: DavidL88 2021년 6월 3일
I have a list of file names in a struct like this; 'Avg: 11_right | bl | _HLG_MOD (92 files) | _HGH'
How do I move '| _HGH' to before '(92 files)' so that I get; 'Avg: 11_right | bl | _HLG_MOD | _HGH (92 files)' for an entire list when the number of files is different for each entry?
I thought about using something like; strrep(OldComment, '(92 files) | _HGH', ' | _HGH (92 files) '); but the number of files changes across file names. Is there a way to amend this code to ignore the number of files?

채택된 답변

Walter Roberson
Walter Roberson 2021년 6월 3일
S = 'Avg: 11_right | bl | _HLG_MOD (92 files) | _HGH'
S = 'Avg: 11_right | bl | _HLG_MOD (92 files) | _HGH'
T = regexprep(S, ' (\(.*\))\s*(.*)$', ' $2 $1')
T = 'Avg: 11_right | bl | _HLG_MOD | _HGH (92 files)'
Please check that the spacing is correct for your purposes
  댓글 수: 1
DavidL88
DavidL88 2021년 6월 3일
That worked perfectly, thank you.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Entering Commands에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by