フィルターのクリア

Convert string of nested field names to variable without eval?

38 ビュー (過去 30 日間)
Paul Murray
Paul Murray 2024 年 8 月 9 日 19:17
移動済み: Steven Lord 2024 年 8 月 12 日 15:06
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 日 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 件のコメント
Paul Murray
Paul Murray 2024 年 8 月 12 日 14:37
移動済み: Steven Lord 2024 年 8 月 12 日 15:06
Thank you, Steven! I figured there was a simple way to do this!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeString Parsing についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by