Change name in files

2 Ansichten (letzte 30 Tage)
DavidL88
DavidL88 am 3 Jun. 2021
Kommentiert: DavidL88 am 3 Jun. 2021
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?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 3 Jun. 2021
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 Kommentar
DavidL88
DavidL88 am 3 Jun. 2021
That worked perfectly, thank you.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Entering Commands 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!

Translated by