How to use regexp in a cell array whose cells may contain cell entries
    3 ビュー (過去 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 件のコメント
  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
      
      
 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)
model.subSystems{193}{:}
その他の回答 (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!

