필터 지우기
필터 지우기

Get lengths of nonuniform-length character strings in an array without counting padded blanks

조회 수: 1 (최근 30일)
Isn't there an easy way to get the lengths of non-blank parts of character vectors placed into an array like this:
A = char('Small', 'Medium', 'Very Large')
The answer I'd like is: 5 6 10. I'd like a one or two-line solution if possible that returns a vector with the lengths of the non-blank parts of each character string in the matrix but counts blanks that fall WITHIN the character string [between words.] In the above case, the matrix A would be 3x10 but I want a function that ignores only the blanks padded onto the end of each string when the matrix is formed and I can't always get the length of the vectors before they're placed in the matrix.
David Horton

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 7월 2일
out=cellfun(@numel,cellstr(A))
  댓글 수: 3
Azzi Abdelmalek
Azzi Abdelmalek 2013년 7월 2일
편집: Azzi Abdelmalek 2013년 7월 2일
You can also use arrayfun:
out=arrayfun(@(x) numel(strtrim(A(x,:))),1:size(A,1))
% look at strtrim function
doc strtrim

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

추가 답변 (1개)

Walter Roberson
Walter Roberson 2013년 7월 2일
cellfun(@(S) find(S~=' ',1,'last'), A)
  댓글 수: 1
David
David 2013년 7월 2일
Thanks but this doesn't work on a character array and I have tried arrayfun, which functions similarly to cellfun. Perhaps using arrayfun is a solution but I haven't figured out yet HOW to us it appropriately.
Thanks for your help anyway.

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

카테고리

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