How to replace multiple strings with another string
3 views (last 30 days)
Show older comments
Hello! I am trying to replace multiple words in a string with a single word. For example the sentence would be Hello girl and cat and I want to change it to Hello boy and boy. I've tried to format it as s being Hello girl and cat and then strrep (s, 'girl' 'cat', 'boy')
Thank you!
0 Comments
Accepted Answer
Azzi Abdelmalek
on 18 Aug 2016
Edited: Azzi Abdelmalek
on 18 Aug 2016
str='Hello girl and cat'
out=regexprep(str,'girl|cat','boy')
%If you want to use strrep
str='Hello girl and cat'
out=strrep(str,'girl','boy')
out=strrep(out,'cat','boy')
2 Comments
HIRAKJYOTI BASUMATARY
on 21 Jan 2018
@Azzi Abdelmalek Sir : if i have a string aa='robotic robot'; and if i use bb=strrep(aa,'robot','robotic') then it gives me 'roboticic robot' ; instead i want the output to be 'robotic robotic' . So Sir, how can i be able to achieve it ?
Pearl
on 25 Jan 2019
I would use regexprep
aa='robotic robot';
out = regexprep(aa,'robot$','robotic');
More Answers (0)
See Also
Categories
Find more on Workspace Variables and MAT Files 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!