Replace multiple values

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.

 采纳的回答

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

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Simulink Design Verifier 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by