从早上开始,我一直在挠头来解决以下要求。我知道如何解析 xml,但无法找到解决方案来获取确切的块和标签。
示例代码:
<employee name="sample1">
<interest name="cricket">
<function action= "bowling">
<rating> average </rating>
</function>
</interest>
<interest name="football">
<function action="defender">
<rating> good </rating>
</function>
</interest>
</employee>
我只想从上面的 xml 文件中提取以下内容并将其写入另一个文本文件。
<interest name="cricket">
<function action= "bowling">
<rating> average </rating>
</function>
</interest>
谢谢你的帮助