how to count words in a cell array
조회 수: 6 (최근 30일)
이전 댓글 표시
I have a cell array that i want to count the words in the strings inside the cell array
this is what i have so far. I need a general direction on where to go from here.
function [words] = howManyWords(ca)
i = 1
ca = {{'Let it go'} {'Let it go'} { 'Can''t hold it back anymore'}}
stringbaby = string(ca)
howmanystrings = length(stringbaby)
for i = 1:howmanystrings
n = strfind(ca(i),' ')
words(i) = length(n) + 1
i = i + 1
end
end
댓글 수: 1
Matt J
2022년 10월 26일
I need a general direction on where to go from here
Why do you need to go anywhere?
답변 (2개)
David Hill
2022년 10월 26일
ca = {{'Let it go'} {'Let it go'} { 'Can''t hold it back anymore'}}
for i = 1:length(ca)
a=ca{i};
a=strsplit(a{1},' ');
words(i)=length(a)';
end
words
댓글 수: 0
Matt J
2022년 10월 26일
ca = {{'Let it go'} {'Let it go'} { 'Can''t hold it back anymore'}};
NumWords = cellfun(@(c)sum(c{1}==' ')+1,ca)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!