How do i break a string down into cell arrays containing a string?

I have a string separated by commas as below: 'Apples, Bananas, Dogs, Cats'
How do i break it down to become a 4x1 cell array containing {Apples; Bananas; Dogs; Cats}
Thanks in advance!

 채택된 답변

Jos (10584)
Jos (10584) 2017년 12월 14일
S = 'Apples, Bananas, Dogs, Cats'
C = strsplit(S, ',')

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Cell Arrays에 대해 자세히 알아보기

질문:

2017년 12월 14일

답변:

2017년 12월 14일

Community Treasure Hunt

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

Start Hunting!

Translated by