regexprep - may the replacement string contain a variable?

5 次查看(过去 30 天)
My problem:
Assume you have the following string: str='WBEi xx(i,BE)'; I want to replace BE by QQ, but only in the second substring xx(i,BE).
The problem is that QQ is stored in a variable, say q='QQ'.
If I would take the function strrep(str, 'BE', q) both occurances of BE are replaced by QQ: ans = 'WQQi xx(i,QQ)'
If I realize it with regexprep (explicitely using 'QQ'): regexprep(str, '(xx\(i,)BE(\))', '$1QQ$2' ) the result is the right one: ans = 'WBEi xx(i,QQ)' %only the second is replaced
But is it somehow possible to parse the variable q='QQ' to this or a similiar function, to do the job?
Thanks!

采纳的回答

Matt Fig
Matt Fig 2012-12-13
Does this work?
regexprep(str, '(xx\(i,)BE(\))', ['$1',q,'$2'] )

更多回答(1 个)

Alexander
Alexander 2012-12-13
That's it. Many thanks.
Alex

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by