Flipping specific segment of string rather than the whole string

1 Ansicht (letzte 30 Tage)
Samiha Shimla
Samiha Shimla am 17 Jan. 2019
Kommentiert: Samiha Shimla am 17 Jan. 2019
If I have a string
str='One two buckle my shoe'
how can I flip it to look as follows?
strM='enO owt elkcub ym eohs'
I have tried using 'flip' and 'reverse' in a few different ways but every time I get
strN='eohs ym elkcub owt enO'
  2 Kommentare
Jan
Jan am 17 Jan. 2019
This sounds like a homework question. Please mention this explicitly, because then we can help you to solve the problem by your own. This is better than submitting a solution written by someone else.
Samiha Shimla
Samiha Shimla am 17 Jan. 2019
Hey, rest assured this is not homework. It is a section of a past paper I am solving. I was specifically struggling with this bit. Thanks for the help!

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Stephen23
Stephen23 am 17 Jan. 2019
regexprep(str,'\w+','${fliplr($0)}')
  2 Kommentare
Jan
Jan am 17 Jan. 2019
Bearbeitet: Jan am 17 Jan. 2019
+1. Compact and clear!
Sean de Wolski
Sean de Wolski am 17 Jan. 2019
Nice use of a function in a regexp!

Melden Sie sich an, um zu kommentieren.


madhan ravi
madhan ravi am 17 Jan. 2019
Bearbeitet: madhan ravi am 17 Jan. 2019
str='One two buckle my shoe';
b=strsplit(str,' ');
strM=strjoin(cellfun(@flip,b,'un',0))
b=flip(strsplit(str,' '));
strN=strjoin(cellfun(@flip,b,'un',0))
Gives:
str =
'One two buckle my shoe'
strM =
'enO owt elkcub ym eohs'
strN =
'eohs ym elkcub owt enO'
  4 Kommentare
Samiha Shimla
Samiha Shimla am 17 Jan. 2019
Thanks a lot! This makes sense now! ^_^

Melden Sie sich an, um zu kommentieren.


Sean de Wolski
Sean de Wolski am 17 Jan. 2019
str=join(reverse(split("One two buckle my shoe")))

Kategorien

Mehr zu Cell Arrays 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!

Translated by