필터 지우기
필터 지우기

parsing XML file with defined format

조회 수: 21 (최근 30일)
michael
michael 2017년 8월 17일
답변: Guillaume 2017년 8월 27일
Hello,
I have following xml file:
<message Name="abc">
<element name=XYZ enumType="enum1">
<enumeration>
<enum name="YES" value="0"/>
<enum name="no" value="1"/>
</enumeration>
<element name=ZYX enumType="enum1">
<enumeration>
<enum name="YES" value="0"/>
<enum name="no" value="1"/>
</enumeration>
</message>
I'd like to parse this file and convert it to some other language. In order to do so, I need to configure enum name (like variable name), where is the only location of the name is part of the element.
When reading the file, I can see that there are 2 elements and 2 enums, where the latter are without any name variable name which I can use.
Any suggestion how to parse this file?

답변 (2개)

Guillaume
Guillaume 2017년 8월 27일
There is no need for any toolbox to parse xml in matlab. xmlread will do that for you. If you want an easier output than the DOM, then the file exchange xml2struct will do the job.
So reading the xml is easy. However, creating enum types from that xml is not going to be that easy. enum types are classes in matlab, so you'll have to create a m file just for that enum.
What you are trying to do is deserialise some data together with their type. To be honest, Matlab is not well suited for that.

John BG
John BG 2017년 8월 17일
  댓글 수: 3
John BG
John BG 2017년 8월 18일
michael
michael 2017년 8월 27일
Why Matlab coder?

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

카테고리

Help CenterFile Exchange에서 Structured Data and XML Documents에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by