Effacer les filtres
Effacer les filtres

How to correct unexpected behavior of `regexprep`?

1 vue (au cours des 30 derniers jours)
Felipe Jiménez Hernández
Felipe Jiménez Hernández le 10 Août 2020
Say I have this char vector:
'my.file.ext'
I want a regexprep command (not using fileparts) that adds a suffix, say '_old', to the file name before the extension, transforming it into
'my.file_old.ext'
If there is no dot (no extension), I'd like '_old' to be appended at the very end.
The following solution was shown to me here (incl. great explanations), and it works in Octave:
>> regexprep('my.file.ext', '^(?:(.*)(\.)|(.*))', '$3$1_old$2') % in Octave
ans = my.file_old.ext
However, even if the syntax of regexprep should be the same, it does not work in Matlab 9.6.0.1072779 (R2019a):
>> regexprep('my.file.ext', '^(?:(.*)(\.)|(.*))', '$3$1_old$2') % in Matlab R2019a
ans =
'$3$1_old$2ext'
Is Matlab's regexprep misbehaving or is it just different, and how?
In the latter case, what is a regexprep command that works in Matlab?
Thank you in advance.

Réponse acceptée

Walter Roberson
Walter Roberson le 10 Août 2020
?: is "group but do not capture" so the () within it do not capture.
One approach:
regexprep('my.file.ext', {'^([^.]+)$', '^(.*)\.([^.]*)'}, {'$1_old', '$1_old.$2'})

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by