필터 지우기
필터 지우기

Create a table/matrix of strings

조회 수: 2 (최근 30일)
cat cat
cat cat 2016년 1월 25일
답변: Guillaume 2016년 1월 25일
Hi!
I have a cell array with these strings:
'(43)2'
'(43)42(34)'
'042123'
From them, I want to obtain a matrix or a table like this
(43) (43)2
(43) (43)4 (43)42 (43)42(34)
0 04 042 0421 04212 042123
Can you help me?

채택된 답변

Guillaume
Guillaume 2016년 1월 25일
Here is one way to do it:
c = {'(43)2'
'(43)42(34)'
'042123'};
substrings = regexp(c, '(?:\(\d+\))|\d', 'match');
result = cellfun(@(ss) arrayfun(@(n) [ss{1:n}], 1:numel(ss), 'UniformOutput', false), substrings, 'UniformOutput', false)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by