How can I use a function, such as XMLREAD, to parse XML data from a string, instead of from a file in MATLAB 7.5 (R2007b)?
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 20 Mai 2010
Commenté : Walter Roberson
le 14 Août 2020
I want to use a function, such as XMLREAD, to parse XML data from a string, instead of from a file.
Réponse acceptée
MathWorks Support Team
le 20 Mai 2010
The ability to parse XML data from a string, instead of from a file is not available in MATLAB.
To work around this issue, use the attached file, 'XMLREADSTRING.m', which is a modified version of the XMLREAD function:
Sample usage:
% Parse.
myTestDoc = xmlreadstring('<data>Test</data>');
% Write to file in order to test.
xmlwrite('mytest.xml', myTestDoc);
1 commentaire
Walter Roberson
le 14 Août 2020
Thanks, Jasper, I was looking for something like that yesterday for https://www.mathworks.com/matlabcentral/answers/579150-failed-to-read-xml-error-when-using-xmlread?s_tid=srchtitle
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur String Parsing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!