How to replace multiple strings with another string
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Nadia Quli
am 18 Aug. 2016
Kommentiert: Pearl
am 25 Jan. 2019
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 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 18 Aug. 2016
Bearbeitet: Azzi Abdelmalek
am 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 Kommentare
HIRAKJYOTI BASUMATARY
am 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
am 25 Jan. 2019
I would use regexprep
aa='robotic robot';
out = regexprep(aa,'robot$','robotic');
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Workspace Variables and MAT Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!