How do you create a string from two strings by intersecting them char by char to form a new word using a loop?

조회 수: 9 (최근 30일)
str1 = 'Hello'
str2 = 'Canada'
strNew = 'CHaenlaldoa' %This is how the new word should look like.
Thank you in advance!
  댓글 수: 4
Alfred Ofosu
Alfred Ofosu 2018년 10월 27일
It's the iteration. it ends at 5, ever the dimension of str1 is 1x4, which is shorter than str2.

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

채택된 답변

Stephen23
Stephen23 2018년 10월 27일
편집: Stephen23 2018년 10월 27일
Loop not required, just use indexing:
Method one:
>> str1 = 'Hello';
>> str2 = 'Canada';
>> strN = [str1,str2];
>> strN([2:2:end,1:2:end]) = strN
strN = CHaenlaldoa
Method two:
>> strN = str2([1,1],:);
>> strN(1,2:end) = str1;
>> strN = strN(2:end)
strN = CHaenlaldoa
  댓글 수: 1
Alfred Ofosu
Alfred Ofosu 2018년 10월 27일
Thanks, Stephen. I may be able to build a loop from yours. Awesome. Its an assignment from school, hence need to be in a loop.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by