Recursively check fields of a structure exist

버전 1.1.0.0 (1.76 KB) 작성자: Matthew Arthington
Check fields of a structure exist at any depth. Can also check multiple field branches at any depth.
다운로드 수: 671
업데이트 날짜: 2010/7/22

라이선스 보기

This function will return true if the first input structure contains the field in the second input string and in turn that field has the field given in the third input string and so on. This allows A.b.c = 2; to be checked as:
isfieldRecursive(A,'b','c')
ans =
1
Which would return false if either b is not a field of A or c is not a field of a.b

The other functionality of this function is that the existence of multiple fields at any depth can be determined by replacing a string input with a cell array of strings. e.g. A.b.c = 2;A.d.c = 2;
isfieldRecursive(A,{'b','d'},'c')
ans =
1
Which would have returned false if A did not have either field b or field d and those fields in turn did not have a field c.

인용 양식

Matthew Arthington (2024). Recursively check fields of a structure exist (https://www.mathworks.com/matlabcentral/fileexchange/28142-recursively-check-fields-of-a-structure-exist), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2008b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

Improved the summary text

1.0.0.0