Flipping specific segment of string rather than the whole string

조회 수: 1 (최근 30일)
Samiha Shimla
Samiha Shimla 2019년 1월 17일
댓글: Samiha Shimla 2019년 1월 17일
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
Jan
Jan 2019년 1월 17일
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 2019년 1월 17일
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!

댓글을 달려면 로그인하십시오.

답변 (3개)

Stephen23
Stephen23 2019년 1월 17일
regexprep(str,'\w+','${fliplr($0)}')
  댓글 수: 2
Jan
Jan 2019년 1월 17일
편집: Jan 2019년 1월 17일
+1. Compact and clear!
Sean de Wolski
Sean de Wolski 2019년 1월 17일
Nice use of a function in a regexp!

댓글을 달려면 로그인하십시오.


madhan ravi
madhan ravi 2019년 1월 17일
편집: madhan ravi 2019년 1월 17일
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
Samiha Shimla
Samiha Shimla 2019년 1월 17일
Thanks a lot! This makes sense now! ^_^

댓글을 달려면 로그인하십시오.


Sean de Wolski
Sean de Wolski 2019년 1월 17일
str=join(reverse(split("One two buckle my shoe")))

카테고리

Help CenterFile Exchange에서 Cell Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by