Borrar filtros
Borrar filtros

Replace multiple values

3 visualizaciones (últimos 30 días)
Lusine
Lusine el 12 de Mayo de 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.

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by