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'})
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!