I want to read all words except ','. So I have used strsplit to split by ','. There are 3 words, but after splitting, it should have 3 words, but length of mm (after executing the complete program) is still 4. How can I delete an specific cell array.
lo='Pushkar,Hanumangarh,Sangaria,';
mm=strsplit(lo,',')
mm
for i=1:length(mm)
A(i)=length(mm{i})
end
id=find(A==0)
mm{id}=[]

 채택된 답변

Jos (10584)
Jos (10584) 2017년 10월 26일
편집: Jos (10584) 2017년 10월 26일

5 개 추천

mm(cellfun('isempty',mm)) = [] % remove empty cells from mm

추가 답변 (0개)

카테고리

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

태그

질문:

2017년 10월 26일

편집:

2017년 10월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by