Find only numeric strings on cellstr array.
조회 수: 9 (최근 30일)
이전 댓글 표시
I'd like to know the index of the "numerical strings" within a cellstr array.
arr = {'123', 'Hola', 'my', 'String', '', '1453', 'stay'};
A correct output will give me index 1 and 6.
isnumeric contained within cellfun doesn't work well here, I'd have to use it in combination with something else but I don't know exactly what that might be.
Any help is appreciated.
댓글 수: 0
채택된 답변
Krishna Sutar
2021년 6월 15일
From my understanding you want to find the indexes of the strings in the cell string array that are numerical. Here is the code which might help you:
arr = {'123', 'Hola', 'my', 'String', '', '1453', 'stay'};
idx = find(~isnan(str2double(arr)))
댓글 수: 3
추가 답변 (2개)
Walter Roberson
2021년 6월 15일
arr = {'123', 'Hola', 'my', 'String', '', '1453', 'stay'};
find(~cellfun(@isempty, regexp(arr, '^\d+$', 'once')))
find(matches(arr, lineBoundary + digitsPattern + lineBoundary))
댓글 수: 0
Stephen23
2021년 6월 15일
편집: Stephen23
2021년 6월 15일
Writing regular expressions or pattern matching that robustly detects all valid number formats is not such a trivial task... it is more reliable to let MATLAB do the heavy lifting:
arr = {'123', 'Hola', 'my', 'String', '', '1453', 'stay', '-1.234', 'NaN', '9e-87'};
idx = strcmpi(arr,'NaN')|~isnan(str2double(arr))
find(idx)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!