所以我有以下格式的XML,我从文件'test.xml'中读取
<XML>
<Agent ID="ABC123">
<Property>
<Code>XYZ</Code>
<Name>Hotel 1</Name>
</Property>
<Property>
<Code>237</Code>
<Name>Hotel 2</Name>
</Property>
<Property>
<Code>213</Code>
<Name>Hotel 3</Name>
</Property>
</Agent>
<Agent ID="DEF456">
<Property>
<Code>333</Code>
<Name>Hotel 4</Name>
</Property>
<Property>
<Code>23423</Code>
<Name>Hotel 5</Name>
</Property>
</Agent>
<Agent ID="GHI789">
<Property>
<Code>45345</Code>
<Name>Hotel 6</Name>
</Property>
</Agent>
</XML>
我希望能够将上述内容输出为以下格式:
Agent | Code | Name
ABC123 | XYZ | Hotel 1
ABC123 | 237 | Hotel 2
......
由于每个代理中有多个代理和不同数量的属性,我该怎么做?
我有使用 XMLReader 的经验,但很高兴尝试使用 SimpleXML 等替代方法。
我想我需要在这个(Foreach Agent ....)上使用 Foreach 循环,但不太确定从哪里开始。
谢谢!