필터 지우기
필터 지우기

Convert string to cell array

조회 수: 880 (최근 30일)
Artyom
Artyom 2014년 8월 31일
댓글: Image Analyst 2021년 4월 17일
How to convert string
a b 3
into cell array {'a' 'b' 3}

채택된 답변

Geoff Hayes
Geoff Hayes 2014년 8월 31일
Artyom - try using textscan to read the data from the string. Something like
str = 'a b 3';
Z = textscan(str,'%s','Delimiter',' ')';
Z{:}'
ans =
'a' 'b' '3'
We use the fact that each character in he input string, str, is separated by a space. The space then acts as the delimiter between each character which we can use to separate each into its own string.
Note that Z is a 3x1 cell array.
Try the above and see what happens!
  댓글 수: 2
Image Analyst
Image Analyst 2014년 8월 31일
I think he wanted the 3 to be a number, if you look at his desired output. But your method is more flexible than mine. Mine did exactly what he asked but we know that people usually come back and say "but it did not work for the string 'a b 3 xyz 2.718281828'. Yours should handle that, if you can convert numbers from char to double.
Geoff Hayes
Geoff Hayes 2014년 8월 31일
You're right - I hadn't caught that! I just assumed that since the input was a string, then the output would be the same.

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

추가 답변 (3개)

CHADCHAVAN RATTANASOPA
CHADCHAVAN RATTANASOPA 2018년 11월 11일
cellstr()
  댓글 수: 2
Souarv De
Souarv De 2021년 4월 17일
Good.
Image Analyst
Image Analyst 2021년 4월 17일
@Souarv De, why "Good"? This answer is wrong. Just look
str = 'a b 3';
ca = cellstr(str) % CHADCHAVIN's wrong answer
Z = textscan(str, '%s', 'Delimiter',' ')' % Geoff's answer
celldisp(Z)
ca =
1×1 cell array
{'a b 3'}
Z =
1×1 cell array
{3×1 cell}
Z{1}{1} =
a
Z{1}{2} =
b
Z{1}{3} =
3
CHADCHAVIN's answer does not give a cell array with three cells (each one containing a substring). It gives one cell (not 3) and it simply put the string into the one cell. Not what was asked for.
It must have been accepted by mistake so I'm going to unaccept it and accept Geoff's instead.

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


Image Analyst
Image Analyst 2014년 8월 31일
Try this:
str = 'a b 3'
str(str==' ') = []; % Remove spaces.
ca = {str(1),str(2),str(3)} % Create the cell array.
celldisp(ca); % Display its values in the command window.

Martin Vatshelle
Martin Vatshelle 2019년 3월 25일
편집: Martin Vatshelle 2019년 3월 25일
If you have a mix of text and numbers textscan as suggested by Geoff is a good solution.
If you only have text strsplit does exactly what you want and I feel that is a bit simpler to use.
strsplit('ab cd ef')
ans =
1×3 cell array
'ab' 'cd' 'ef'
You can specify the delimiter if it is not spaces that are your delimiters.
If you however want to split a string into single characters you could use cellstr
s = 'ab cd ef';
cellstr(s(:))' %here I transposed at the end for readability, you can skip that
ans =
1×8 cell array
'a' 'b' '' 'c' 'd' '' 'e' 'f'

카테고리

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