regexprep - may the replacement string contain a variable?

2 vues (au cours des 30 derniers jours)
Alexander
Alexander le 13 Déc 2012
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!

Réponse acceptée

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

Plus de réponses (1)

Alexander
Alexander le 13 Déc 2012
That's it. Many thanks.
Alex

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by