How to use regexp in a cell array whose cells may contain cell entries

조회 수: 2 (최근 30일)
Hello,
Ι have the following cell array
I want to use -regexp to find where 'Carbon fixation' is written.
I would use: regexp(model.subSystems,'Carbon fixation');
The problem is that some cells contain cell entries, so this is a problem.
I want to find where (and especially in which row) 'Carbon fixation' is written, in any cell in any cell entry.
Can anyone help me? Thank you!
  댓글 수: 4
Ioannis Vourvachakis
Ioannis Vourvachakis 2022년 1월 8일
I want to know where that text is appeared (anywhere), and I mean in which row of this array.
Stephen23
Stephen23 2022년 1월 8일
"The problem is that some cells contain cell entries, so this is a problem. "
All of them do:
>> all(cellfun(@iscell,model.subSystems))
ans =
logical
1

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

채택된 답변

Stephen23
Stephen23 2022년 1월 8일
편집: Stephen23 2022년 1월 8일
Your data:
S = load('model.subSystems.mat');
model = S.model;
Getting indices of nested cells which contain the requested text:
fnh = @(c)any(~cellfun(@isempty,regexpi(c,'Carbon fixation')));
idx = cellfun(fnh,model.subSystems);
Checking:
find(idx)
ans = 35×1
193 194 195 196 197 198 199 200 201 202
model.subSystems{193}{:}
ans = 'Carbon fixation'

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by