Clear Filters
Clear Filters

Convert string of nested field names to variable without eval?

38 views (last 30 days)
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.

Accepted Answer

Steven Lord
Steven Lord on 9 Aug 2024 at 19:47
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 Comment
Paul Murray
Paul Murray on 12 Aug 2024 at 14:37
Moved: Steven Lord on 12 Aug 2024 at 15:06
Thank you, Steven! I figured there was a simple way to do this!

Sign in to comment.

More Answers (0)

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!