Replace several occurrence of one string with multiple different strings using regexprep without a for loop

2 ビュー (過去 30 日間)
How can I replace several occurrence of one string with multiple different strings?
I would like to use regexprep without using a for loop.
For example, in this string, I would like to replace the first "XXX" with "ALPHA" and the second "XXX" with "BETA"
string = '2*sin(XXX)+XXX'
I would try these (which none obviously works)
string = regexprep(string,'XXX' , {'ALPHA','BETA'})
string = regexprep(string,{'XXX','XXX'}, {'ALPHA','BETA'})

採用された回答

Alborz Sakhaei
Alborz Sakhaei 2018 年 12 月 14 日
string = regexprep('2*sin(XXX)+XXX','XXX',{'ALPHA','BETA'},[1,2])

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by