How do I push back into a struct a list of XML files processed using "xml2struct"?
13 views (last 30 days)
Show older comments
MathWorks Support Team
on 16 Feb 2021
Answered: MathWorks Support Team
on 23 Feb 2021
I have a list of XML files that I want to read and push back into a struct using "xml2struct". How do I do this dynamically so that the size of struct grows in a controlled way each time an XML file is converted and added?
Accepted Answer
MathWorks Support Team
on 16 Feb 2021
One way to achieve this is to read the list of XML files in a "while" loop and populate a nested structure. A nested structure is quite natural for collating many similarly structured XML files as each one itself can be thought of as a struct of structures. The Data Import and Export functionality in MATLAB allows the user to check if they have reached the end of a file while reading it. This means the list of source files can be read in MATLAB and the "xml2struct" function executed on each filename. For example,
fid = fopen('list.txt','rt'); % list of xml files to convert
s = struct;
n = 1;
while ~feof(fid) % checks if at end of file
filename = fgetl(fid); % get the filename line-by-line
s.input_file(n) = xml2struct(filename);
n = n + 1; % iterate in the struct
end
fclose(fid);
In this example, the struct constructed grows in size on each iteration of the while loop as necessary, which means the memory allocation dynamically grows. This can be checked by calling "whos s" on each loop iteration.
0 Comments
More Answers (0)
See Also
Categories
Find more on Workspace Variables and MAT Files in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!