Azzera filtri
Azzera filtri

Replace multiple values

3 visualizzazioni (ultimi 30 giorni)
Lusine
Lusine il 12 Mag 2012
Hi everyone I need to replace multiple values to one but when using strrep function I have to do this many times and specify oldSubstr one at a time, is there a method to do this in a more convinient way.

Risposta accettata

Andrei Bobrov
Andrei Bobrov il 12 Mag 2012
use function regexprep
eg:
c = {'c:\cookies.m'; ...
'c:\candy.m'; ...
'c:\calories.m'};
d = regexprep(c, {'co' 'can' 'cal'}, 'N_')

Più risposte (0)

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by