How can I concatenate a string array of a dimension 1x N into one cell
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello community,
I want to accomplish the following with my code:
- Originally I don't know the number of names in array A and I have to group them in just one cell concatenating them with the delimiter "/". I tried the for loop with no success and it is not necessary at all. Any hints on how I can accomplish this? I appreciate all the help.

댓글 수: 1
Stephen23
2022년 7월 12일
As well as JOIN() as Chunru showed here are a few other approaches:
A = {'ABC','DEF','HIJK'};
B = char(join(A,'/'))
C = sprintf('/%s',A{:});
C = C(2:end)
D = cell2mat(strcat('/',A));
D(1) = []
A(2,1:end-1) = {'/'};
E = [A{:}]
채택된 답변
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!