using strrep multiple times

49 Ansichten (letzte 30 Tage)
James Knight
James Knight am 18 Okt. 2019
Bearbeitet: Guillaume am 18 Okt. 2019
Hi
I want to use strrep multiple times but , whats the correct way of doing this without retyping sstrep
Thanks in advance
choices= strrep(strrep(strrep(usertext, 'left', 'right'), 'up', 'down'), 'black' , 'white');
  3 Kommentare
James Knight
James Knight am 18 Okt. 2019
But does that not work only with one singular output?
Thanks

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Guillaume
Guillaume am 18 Okt. 2019
Use replace instead:
>> usertext = 'left black left right up down upside white upleft';
>> replace(usertext, {'left', 'up', 'black'}, {'right', 'down', 'white'})
ans =
'right white right right down down downside white downright'

Adam Danz
Adam Danz am 18 Okt. 2019
This demo is dedicated to Kazuhisa Hashimoto.
usertext = 'up, up, down, down, left, right, left, right, b, a, start.';
s = regexprep(usertext,{'left','up','b'},{'right','down','a'})
  1 Kommentar
Guillaume
Guillaume am 18 Okt. 2019
Bearbeitet: Guillaume am 18 Okt. 2019
Should have thought of that usertext for my answer ;)
+1 just for that.
However, be careful that some characters in the regexprep need to be escaped. e.g.
regexprep(usertext, {'.', '+'}, {',', '-'})
will lead to unexpected results. For that reason replace is safer.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by