regex replace whole word
7 views (last 30 days)
Show older comments
Hi,
How to change
'v1 = v1a;'
to
'v(1) = v1a;'
using regex or regexrep?
regexprep('v1 = v1a','\bv1\b','v(1)')
apparently does not work.
0 Comments
Accepted Answer
Stephen23
on 1 Jun 2018
Edited: Stephen23
on 1 Jun 2018
>> regexprep('v1 = v1a','^([a-z]+)(\d+)','$1($2)')
ans = v(1) = v1a
Hopefully you are not constructing arbitrary strings of code for evaluating!
8 Comments
Stephen23
on 1 Jun 2018
@Bardo: you should accept your answer, if it resolves your original question.
More Answers (1)
See Also
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!