Convert string of nested field names to variable without eval?

조회 수: 16 (최근 30일)
Paul Murray
Paul Murray 2024년 8월 9일
이동: Steven Lord 2024년 8월 12일
Sorry if this is answered elsewhere, It wasn't obvious to me from searching the archives that this exact question has been posed before.
I am parsing XML files using the function in File Exchange xml2struct ( https://www.mathworks.com/matlabcentral/fileexchange/28518-xml2struct ) which is a great tool, BTW.
As you might expected, the output is a nested structure, and depending on the input file, the field names and complexity of the structures are highly variable.
I am searching through theses structures to find a particular field of interest:
S.Data.Configuration.FieldofInterest
but in another file, that field might be on a completely different branch or level:
S2.Data.Nested.Field.FieldofInterest
I can generate list of strings with all the field names which I can parse to find the field of interest. But then I have some strings like this:
fnlist = 'S.Data.Configuration.FieldofInterest';
fnlist2 = 'S2.Data.Nested.Field.FieldofInterest';
If I want to extract the data from the fields of interest, the only way I know how to do this is to use eval:
output = eval(fnlist);
I'm not a fan of the eval functions because they make it very hard to debug code and diagnose problems if the string gets malformed.
I'd like to use dynamic field names like S.(name1).(name2).(name3), etc., but unless you know a priori the data structure and how many levels in your target field is (which I will not), this isn't possible.
Is there another alternative besides eval? Thanks in advance.

채택된 답변

Steven Lord
Steven Lord 2024년 8월 9일
S.Data.Configuration.FieldofInterest = 42;
fnlist = 'S.Data.Configuration.FieldofInterest';
Split the string representation at the periods to give a cell array of field names.
list = split(fnlist, '.')
list = 4x1 cell array
{'S' } {'Data' } {'Configuration' } {'FieldofInterest'}
Pass the fields (everything past the first element of list) into getfield as a comma-separated list.
getfield(S, list{2:end})
ans = 42
What if you get it wrong?
fnlist2 = 'S2.Data.Nested.Field.FieldofInterest';
list = split(fnlist2, '.')
list = 5x1 cell array
{'S2' } {'Data' } {'Nested' } {'Field' } {'FieldofInterest'}
getfield(S, list{2:end})
Unrecognized field name "Nested".

Error in getfield (line 26)
f = f.(field);
  댓글 수: 1
Paul Murray
Paul Murray 2024년 8월 12일
이동: Steven Lord 2024년 8월 12일
Thank you, Steven! I figured there was a simple way to do this!

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by